MY MEMO

[ALGORITHM - ETC] 대칭수 구하는 문제 (십진수,이진수) 본문

ALGORITHM/ALGORITHM STUDY

[ALGORITHM - ETC] 대칭수 구하는 문제 (십진수,이진수)

l_j_yeon 2017. 4. 4. 17:46
1.
십진수-이진수 변환 : string, while문, shift연산
이진수 대칭 확인 : string_front,string_back,string_front.compare(string_back)




2.

십진수-이진수 변환 : _itoa함수
이진수 대칭 확인 : string_front,string_back,string_front.compare(string_back)





3.

십진수-이진수 변환 : 1번과 동일
이진수 대칭 확인 : string while문





4.

십진수-이진수 변환 : vector
이진수 대칭 확인 : vector while문







Comments