Jinsoolve.

Categories

Tags

1월 안에는 꼭...

Portfolio

About

C++에서 이진수의 비트 수를 세는 방법

Created At: 2025/01/13

1 min read

101101101101 이런 이진수가 주어질 때 C++에서 1의 개수를 세려면 어떻게 해야 할까?

1// unsigned int 2__builtin_popcount(); 3 4// long long 5 __builtin_popcountll();

그러나 c++20 이후부터는 아래 함수로 가능하는 듯 하다.

1popcount();

참고

https://codingdog.tistory.com/entry/c-20부터-적용된-bit-popcount-함수에-대해서-알아봅시다

관련 포스트가 3개 있어요.

세 점의 좌표가 주어졌을 때 삼각형의 면적 구하는 방법

2025/01/13

NEW POST
ml-textbook-1 cover image

로지스틱 회귀의 비용 함수는 왜 이렇게 생겼을까?

로지스틱 회귀의 비용 함수는 왜 이렇게 생겼을까?

2024/12/26

NEW POST
profile

김진수

Currently Managed

Currently not managed

© 2025. junghyeonsu & jinsoolve all rights reserved.