Fix C# codes for the bucket sort,

counting sort and radix sort
This commit is contained in:
krahets 2023-04-14 06:01:37 +08:00
parent 3b96ab6be9
commit c8344e8636
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/**
* File: bucked_sort.cs
* File: bucket_sort.cs
* Created Time: 2023-04-13
* Author: hpstory (hpstory1024@163.com)
*/
@ -8,7 +8,7 @@ using NUnit.Framework;
namespace hello_algo.chapter_sorting;
public class bucked_sort
public class bucket_sort
{
/* 桶排序 */
public static void bucketSort(float[] nums)

View File

@ -1,5 +1,5 @@
/**
* File: bucked_sort.cs
* File: counting_sort.cs
* Created Time: 2023-04-13
* Author: hpstory (hpstory1024@163.com)
*/

View File

@ -1,5 +1,5 @@
/**
* File: bucked_sort.cs
* File: radix_sort.cs
* Created Time: 2023-04-13
* Author: hpstory (hpstory1024@163.com)
*/