This commit is contained in:
krahets
2023-11-27 02:32:06 +08:00
parent 32d5bd97aa
commit a4a23e2488
31 changed files with 179 additions and 213 deletions
@@ -2338,7 +2338,7 @@ $$
int Logarithmic(float n) {
int count = 0;
while (n > 1) {
n = n / 2;
n /= 2;
count++;
}
return count;