mirror of
https://github.com/krahets/hello-algo.git
synced 2025-01-23 22:40:25 +08:00
Fix C# codes for the bucket sort,
counting sort and radix sort
This commit is contained in:
parent
3b96ab6be9
commit
c8344e8636
@ -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)
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: bucked_sort.cs
|
||||
* File: counting_sort.cs
|
||||
* Created Time: 2023-04-13
|
||||
* Author: hpstory (hpstory1024@163.com)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: bucked_sort.cs
|
||||
* File: radix_sort.cs
|
||||
* Created Time: 2023-04-13
|
||||
* Author: hpstory (hpstory1024@163.com)
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user