본문 바로가기
반응형

분류 전체보기232

[C/C++] 시리얼 통신 (Serial Communication) In telecommunication and data transmission, serial communication is the process of sending data one bit at a time, sequentially, over a communication channel or computer bus. This is in contrast to parallel communication, where several bits are sent as a whole, on a link with several parallel channels. Serial communication is used for all long-haul communication and most computer networks, where.. 2019. 9. 4.
[Algorithm - Concept] AVL Tree (named after inventors Adelson-Velsky and Landis) [Algorithm - Concept] AVL Tree (named after inventors Adelson-Velsky and Landis) AVL 트리(AVL tree)는 가장 초기에 나온 균형 잡힌(balanced) 이진 탐색 트리이다. 1962년 G.M. Adelson-Velskii와 E.M. Landis 가 그들의 논문 "An algorithm for the organization of information" 을 통해 발표했고 그들의 이름을 따서 지어졌다. AVL 트리는 각각의 노드(node, 분기점)마다 왼쪽과 오른쪽 부분 트리(sub-tree)의 높이 차이에 대한 정보를 가지며 부분 트리의 높이 차이가 1보다 크지 않은 성질을 가진다. 균형 잡힌 AVL 트리는 n개의 원소가 있을 때 O(l.. 2019. 9. 4.
[Android] 백그라운드 투명색 설정 (Set transparent background of an imageview on Android) 📄 [Android] XML Source Code android:background="@android:color/transparent" OR android:background="#00000000" 🚀 REFERENCE 안드로이드/Android BackGround 투명색 적용 하기 ~! 안드로이드/Android BackGround 투명색 적용 하기 ~! 안드로이드에서 투명 배경(BackGround)을 설정 하는 방법 입니다. View의 BackGround 나 Color를 사용할 수 있는 곳에 "android/color/transparent" 속성이나.. arabiannight.tistory.com Set transparent background of an imageview on Android I am us.. 2019. 9. 2.
[Android] 상태바 숨기기 (How to hide status bar?) 📄 Hide status bar Source Code by Java getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 🚀 REFERENCE How to hide status bar? How can I hide the status bar for a specific activity? I found this similar question, but none of the answers worked for me. The app just crashed every time I tried to go to the activity: How to h... stackoverflow... 2019. 9. 2.
반응형