Fix the deconstructor of linkedlist_queue.cpp

This commit is contained in:
krahets
2023-03-16 18:43:13 +08:00
parent fcdc96e03d
commit 0840bc2043
9 changed files with 16 additions and 15 deletions

View File

@@ -13,7 +13,7 @@ func digit(num, exp int) int {
}
/* 计数排序(根据 nums 第 k 位排序) */
func countSort(nums []int, exp int) {
func countingSort(nums []int, exp int) {
// 十进制的各位数字范围为 0~9 ,因此需要长度为 10 的桶
bucket := make([]int, 10)
n := len(nums)
@@ -56,6 +56,6 @@ func radixSort(nums []int) {
// k = 2 -> exp = 10
// k = 3 -> exp = 100
// 即 exp = 10^(k-1)
countSort(nums, exp)
countingSort(nums, exp)
}
}