-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathSortProgram.cs
25 lines (24 loc) · 1.24 KB
/
SortProgram.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
namespace Algorithm
{
/// <summary>
/// 排序算法汇总 模块
/// 所有排序算法均是以从小到大为例的
/// </summary>
class SortProgram
{
public static void Test()
{
// new BubbleSort.Solution().Test(); // 冒泡排序
// new QuickSort.Solution().Test(); // 快速排序
// new SimpleInsertionSort.Solution().Test(); // 简单插入排序
// new ShellSort.Solution().Test(); // 希尔排序
// new SimpleSelectionSort.Solution().Test(); // 简单选择排序
// new HeapSort.Solution().Test(); // 堆排序
// new MergeSort.Solution().Test(); // 归并排序
// new BucketSort.Solution().Test(); // 桶排序
new CountSort.Solution().Test(); // 计数排序
// new RadixSort.Solution().Test(); // 基数排序
}
}
}