🌈 搜索
📅  最后修改于: 2022-03-11 14:44:54.499000             🧑  作者: Mango
//Method 1 int count = 0; while (n) { count++; n >>= 1; } //Method 2 int count = (int)log2(number)+1;