bit counting
countBits = (n) => n.toString(2).split("0").join("").length;
bit counting
countBits = (n) => n.toString(2).split("0").join("").length;
bitwise count total set bits
//WAP to find setbits (total 1's in binary ex. n= 5 => 101 => 2 setbits
int count{}, num{};
cin >> num;
while (num > 0) {
count = count + (num & 1); // num&1 => it gives either 0 or 1
num = num >> 1; // bitwise rightshift
}
cout << count; //count is our total setbits
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us