Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 20117
- 1174
- backtracking #codetree #디버깅 #삼성코테
- 진법변환 #2to10 #10to2 #이진법 #십진법 #변환 #bitset #c++
- 백준
- 호반우 상인
- 백준 #다익스트라 #dijkstra #9370 #c++
- hcpc
- 최소 #공배수 #최대 #공약수 #유클리드 #호제법 #lcm #gcd #c++ #boj #3343 #백준 #장미
- 3343
- 쌤쌤쌤
- c++ #입출력 #속도 #ios #sync_with_stdio #cin #cout #tie
- 사이클 없는 그래프
- 16202
- 3D #Reconstruction #computer #vision #volume #metric #tsdf #kinect #fusion
- 이분탐색 #dp #11053
- 줄어드는수
- N번째큰수
- 레드아보
- 코딩
- boj #백준
- graph #최단경로
- LIS #가장긴증가하는부분수열 #
- graph
- C++
- 투포인터 #백준 #boj #20922 #22862
- 30870
- 22869
- c++ #boj #
- BOJ
Archives
- Today
- Total
hyunjin
2진수 <-> 10진수 변환 코드, bitset 본문
728x90
1. 2진수 <-> 10진수 변환 코드
#include <bits/stdc++.h>
using namespace std;
int main(){
int a, b, res1 = 0, res2 = 0;
cin >> a>>b;//a : 10진수 , b : 2진수
//10진 to 2진
for(int i =1 ; a>=1 ; i*=10){
res1 = (a%2)*i + res1;
a/=2;
}
//2진 to 10진
for(int j =0 ; b>=1 ; j++){
res2 += (b%10) * pow(2,j) ;
b/=10;
}
cout<<res1<<"(2)"<<endl;
cout<<res2;
return 0;
}
2.bitset 사용하여 10진수 -> 2진수
- 헤더파일 : <bitset>
- 사용법 : bitset<출력길이>(변수 or 십진수)
#include <bits/stdc++.h>
#include <bitset>
using namespace std;
int main(){
int a;
cin >> a;
cout<<bitset<4>(a);
return 0;
}
결과 타입이 int는 아니다.
저장할 때 string으로
string s = bitset<8>(a).to_string();
3. bitset 사용법
- bitset 헤더파일에서 제공하는 STL(standart template libary)
- 고정된 크기의 N 비트 배열
사용법
헤더파일 | #include <bitset> |
선언 | bitset<할당할 비트 수> 변수명 |
[n] | n + 1 번째(인덱스 n)비트가 1인지 0인지 검사 |
.test(n) | n + 1 번째(인덱스 n)비트가 1인지 0인지 검사 |
.all() | 모든 비트(all)가 1이면 1(true) 그렇지 않으면 0(false)을 반환 |
.any() | bitset 중 하나라도(any) 1이면 1(true)을 반환 한 개라도 1이 없다면, 즉 모두 0일 때 0(false)을 반환 |
.none() | bitset 중 1이 하나도 없다면(none), 즉 모두 0이면 1(true)을 반환 |
.count() | bitset 중에서 1인 비트의 개수를 반환 |
.size() | bitset의 크기를 구한다 |
.set() | 전체 비트를 1로 셋팅 |
.set(n, true/false) | n + 1번째(인덱스 n)비트를 1(true)또는 0(false)으로 셋팅 |
.reset() | 전체 비트를 0으로 리셋 |
.flip | 전체 비트를 토글. 0은 1로, 1은 0으로 |
.flip(n) | n + 1 번째(인덱스 n)비트를 토글. 0은 1로, 1은 0으로 |
.to_string() | 전체 비트를 string화 시킨다 |
.to_ulong() / .to_ullong() | 전체 비트를 unsigned long / unsigned long long의 값으로 바꿔준다 |
operator&= operator|= operator^= operator~ |
AND, OR, XOR and NOT 비트 연산을 수행 |
operator<<= operator>>= operator<< operator>> |
left shift연산과 right shift 연산을 수행 |
참고 사이트
728x90
'개인 공부 > C++' 카테고리의 다른 글
[씹어먹는 C++]< 1- C++> namespace (0) | 2021.03.02 |
---|---|
int , string , char 형 변환 (0) | 2021.02.16 |
isalpha , isdigit , isalnum (0) | 2021.02.16 |
출력 포맷 변경 iomanip (0) | 2020.09.01 |
ios::sync_with_stdio , cin.tie , cout.tie 사용법과 설명, 속도 비교 (0) | 2020.08.13 |