Find out number of bits needed to represent a positive integer in binary?

后端 未结 14 1741
醉酒成梦
醉酒成梦 2020-12-05 09:35

This is probably pretty basic, but to save me an hour or so of grief can anyone tell me how you can work out the number of bits required to represent a given positive intege

14条回答
  •  我在风中等你
    2020-12-05 10:28

    This is in C, but I suspect you could convert to Java fairly easily:

    Find the log base 2 of an N-bit integer in O(lg(N)) operations

提交回复
热议问题