Quantcast
Channel: Bits counting algorithm (Brian Kernighan) in an integer time complexity - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by Łukasz Zephyr for Bits counting algorithm (Brian Kernighan) in an...

This question is really about meaning of N in big O notation, not complexity of algorithm.N means size of the data. But in case where where "data" is a single number you need to define what you...

View Article


Answer by PengOne for Bits counting algorithm (Brian Kernighan) in an integer...

This algorithm goes through as many iterations as there are set bits. So if we have a 32-bit word with only the high bit set, then it will only go once through the loop. In the worst case, it will pass...

View Article


Answer by The_Sympathizer for Bits counting algorithm (Brian Kernighan) in an...

There are floor(lg(N)) + 1 significant bits in N -- that's a base-2 logarithm. The number of 1 bits in n is at most this. So the time will have asymptotic upper bound O(lg(N)) = O(log(N)).

View Article

Bits counting algorithm (Brian Kernighan) in an integer time complexity

Can someone explains why Brian Kernighan's algorithm takes O(log N) to count set bits (1s) in an integer. A simple implementation of this algorithm is below (in JAVA)int count_set_bits(int n){ int...

View Article
Browsing latest articles
Browse All 4 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>