We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
집합에 대한 and, or를 연산할 필요가 많다. 이를 bit set에 대한 bitwise 연산으로 처리하려 한다.
std::bitset
std::vector<bool>
-> boost의 dynamic_bitset으로 가자
The text was updated successfully, but these errors were encountered:
include boost/dynamic_bitset #6
004f0b3
No branches or pull requests
집합에 대한 and, or를 연산할 필요가 많다. 이를 bit set에 대한 bitwise 연산으로 처리하려 한다.
std::bitset
은 크기를 dynamic하게 할 수 없다.std::vector<bool>
는 일반 vector와 다르게 bitset처럼 최적화가 잘 된듯 하고 dynamic하게 크기를 정할 수 있지만 bitwise 연산이 안 정의되어 있는듯 하다.-> boost의 dynamic_bitset으로 가자
The text was updated successfully, but these errors were encountered: