Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,970 questions

51,912 answers

573 users

How to recursively count set bits in C++

1 Answer

0 votes
#include <bits/stdc++.h> 

using namespace std; 
  
int count_set_bits(int n) { 
    if (n == 0) 
        return 0; 
    else
        return (n & 1) + count_set_bits(n >> 1); 
} 
  

int main() 
{ 
    int n = 2935; // ‭101101110111‬ 
  
    cout << count_set_bits(n); 
  
    return 0; 
} 




/*
run:

9

*/

 



answered Apr 12, 2019 by avibootz

Related questions

1 answer 167 views
1 answer 136 views
1 answer 178 views
1 answer 132 views
1 answer 166 views
166 views asked May 8, 2019 by avibootz
1 answer 182 views
1 answer 93 views
...