일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- database
- implement
- Binary Search
- Binary Tree
- 코딩테스트
- dynamic programming
- simulation
- greedy
- geometry
- Tree
- java
- string
- 자바
- sorting
- Matrix
- array
- Stack
- 구현
- SQL
- bit manipulation
- Method
- Math
- 코테
- Number Theory
- two pointers
- 파이썬
- Counting
- Data Structure
- hash table
- Class
- Today
- Total
목록bit manipulation (24)
코린이의 소소한 공부노트
1. Input 1) 정수 n 2. Output 1) n이 2의 거듭제곱이면 true 반환 2) 아니라면 false 반환 3. Constraint 1) - 2^31 Output: false 5. Code 1) 첫 코드(2022/07/19) if(n==1) return true; if(n=2) num /= 2; if(num==1) return true; else return false;
1. Input 1) unsigned 정수 n 2. Output 1) n에 담긴 1의 개수를 int 변수에 담아 반환 3. Constraint 1) n은 길이가 32인 2진 문자열 4. Example Input: n = 00000000000000000000000000001011 Output: 3 5. Code 1) 첫 코드(2022/07/22) String s = Integer.toBinaryString(n); n = 0; for(int i=0 ; i
1. Input 1) 32bit의 unsigned 정수 n 2) 자바를 포함한 몇몇 언어에서는 signed 정수만 취급하기 때문에 맨 앞 bit가 1일 경우 달리 계산될 수 있으니 주의 2. Output 1) n의 비트를 전부 뒤집은 결과를 int 변수에 담아 반환 3. Constraint 1) n은 2진 문자열로 길이는 무조건 32이다. 4. Example Input: n = 11111111111111111111111111111101 Output: 3221225471 설명: - 2진수 문자열 11111111111111111111111111111101은 unsigned 정수 4294967293을 나타낸다. - n의 비트를 다 뒤집으면 10111111111111111111111111111111이 되는데, ..