添加for循环的花括号以增加可读性和可维护性 (#1249)

pull/1264/head
echoless 7 months ago committed by GitHub
parent ab536479d0
commit 30fd4ef646
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -50,13 +50,14 @@ public class radix_sort {
if (num > m)
m = num;
// 按照从低位到高位的顺序遍历
for (int exp = 1; exp <= m; exp *= 10)
for (int exp = 1; exp <= m; exp *= 10) {
// 对数组元素的第 k 位执行计数排序
// k = 1 -> exp = 1
// k = 2 -> exp = 10
// 即 exp = 10^(k-1)
countingSortDigit(nums, exp);
}
}
public static void main(String[] args) {
// 基数排序

Loading…
Cancel
Save