Skip to content
Snippets Groups Projects
Commit bf5d9c18 authored by Bruno Freitas Tissei's avatar Bruno Freitas Tissei
Browse files

Add bitmask

parent d9aee4e4
No related branches found
No related tags found
No related merge requests found
/**
* Bitmask
* Complexity (Time): O(1)
* Complexity (Space): O(1)
*/
// Set bit in position pos (0 to 1)
void set(ll &bitmask, int pos) {
bitmask |= (1 << pos);
}
// Set all bits in a bitmask with size n
void set_all(ll &bitmask, int n) {
bitmask = (1 << n) - 1;
}
// Unset bit in position pos (1 to 0)
void unset(ll &bitmask, int pos) {
bitmask &= ~(1 << pos);
}
// Unset all bits
void unset_all(ll &bitmask) {
bitmask = 0;
}
// Get value of bit in position pos
int get(ll bitmask, int pos) {
return bitmask & (1 << pos);
}
// Toggle value in position pos
void toggle(ll &bitmask, int pos) {
bitmask ^= (1 << pos);
}
// Get position of least significant 1
int least_significant_one(ll bitmask) {
return bitmask & (-bitmask);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment