C# 十大排序算法

以下是常见的十大排序算法(按照学习和实现的顺序排列):

  1. 冒泡排序(Bubble Sort)
  2. 选择排序(Selection Sort)
  3. 插入排序(Insertion Sort)
  4. 希尔排序(Shell Sort)
  5. 归并排序(Merge Sort)
  6. 快速排序(Quick Sort)
  7. 堆排序(Heap Sort)
  8. 计数排序(Counting Sort)
  9. 桶排序(Bucket Sort)
  10. 基数排序(Radix Sort)

这些排序算法具有不同的时间复杂度、空间复杂度和稳定性,适用于不同的排序场景。每种算法都有其独特的思想和实现方式,您可以根据具体的需求选择适合的排序算法。

C#实现的十大排序算法的示例代码如下:

1、冒泡排序(Bubble Sort) :

class BubbleSort

{

public static void Sort(int\[\] arr)

{

int n = arr.Length;

for (int i = 0; i < n - 1; i++)

{

for (int j = 0; j < n - i - 1; j++)

{

if (arrj > arrj + 1)

{

int temp = arrj;

arrj = arrj + 1;

arrj + 1 = temp;

}

}

}

}

}
2、选择排序(Selection Sort) :

class SelectionSort

{

public static void Sort(int\[\] arr)

{

int n = arr.Length;

for (int i = 0; i < n - 1; i++)

{

int minIndex = i;

for (int j = i + 1; j < n; j++)

{

if (arrj < arrminIndex)

{

minIndex = j;

}

}

int temp = arrminIndex;

arrminIndex = arri;

arri = temp;

}

}

}
3、插入排序(Insertion Sort) :

class InsertionSort

{

public static void Sort(int\[\] arr)

{

int n = arr.Length;

for (int i = 1; i < n; ++i)

{

int key = arri;

int j = i - 1;

while (j >= 0 && arrj > key)

{

arrj + 1 = arrj;

j = j - 1;

}

arrj + 1 = key;

}

}

}
4、希尔排序(Shell Sort) :

class ShellSort

{

public static void Sort(int\[\] arr)

{

int n = arr.Length;

for (int gap = n / 2; gap > 0; gap /= 2)

{

for (int i = gap; i < n; i++)

{

int temp = arri;

int j;

for (j = i; j >= gap && arrj - gap > temp; j -= gap)

{

arrj = arrj - gap;

}

arrj = temp;

}

}

}

}
5、归并排序(Merge Sort) :

class MergeSort

{

public static void Sort(int\[\] arr)

{

if (arr.Length <= 1)

return;

int mid = arr.Length / 2;

int\[\] leftArr = new intmid;

int\[\] rightArr = new intarr.Length - mid;

for (int i = 0; i < mid; i++)

{

leftArri = arri;

}

for (int i = mid; i < arr.Length; i++)

{

rightArri - mid = arri;

}

Sort(leftArr);

Sort(rightArr);

Merge(leftArr, rightArr, arr);

}

private static void Merge(int\[\] leftArr, int\[\] rightArr, int\[\] arr)

{

int leftIndex = 0;

int rightIndex = 0;

int current = 0;

while (leftIndex < leftArr.Length && rightIndex < rightArr.Length)

{

if (leftArrleftIndex <= rightArrrightIndex)

{

arrcurrent = leftArrleftIndex;

leftIndex++;

}

else

{

arrcurrent = rightArrrightIndex;

rightIndex++;

}

current++;

}

while (leftIndex < leftArr.Length)

{

arrcurrent = leftArrleftIndex;

leftIndex++;

current++;

}

while (rightIndex < rightArr.Length)

{

arrcurrent = rightArrrightIndex;

rightIndex++;

current++;

}

}

}
6、快速排序(Quick Sort) :

class QuickSort

{

public static void Sort(int\[\] arr, int low, int high)

{

if (low < high)

{

int pivotIndex = Partition(arr, low, high);

Sort(arr, low, pivotIndex - 1);

Sort(arr, pivotIndex + 1, high);

}

}

private static int Partition(int\[\] arr, int low, int high)

{

int pivot = arrhigh;

int i = low - 1;

for (int j = low; j < high; j++)

{

if (arrj < pivot)

{

i++;

Swap(arr, i, j);

}

}

Swap(arr, i + 1, high);

return i + 1;

}

private static void Swap(int\[\] arr, int i, int j)

{

int temp = arri;

arri = arrj;

arrj = temp;

}

}
7、堆排序(Heap Sort) :

class HeapSort

{

public static void Sort(int\[\] arr)

{

int n = arr.Length;

for (int i = n / 2 - 1; i >= 0; i--)

{

Heapify(arr, n, i);

}

for (int i = n - 1; i > 0; i--)

{

Swap(arr, 0, i);

Heapify(arr, i, 0);

}

}

private static void Heapify(int\[\] arr, int n, int i)

{

int largest = i;

int left = 2 * i + 1;

int right = 2 * i + 2;

if (left < n && arrleft > arrlargest)

{

largest = left;

}

if (right < n && arrright > arrlargest)

{

largest = right;

}

if (largest != i)

{

Swap(arr, i, largest);

Heapify(arr, n, largest);

}

}

private static void Swap(int\[\] arr, int i, int j)

{

int temp = arri;

arri = arrj;

arrj = temp;

}

}
8、计数排序(Counting Sort) :

class CountingSort

{

public static void Sort(int\[\] arr)

{

int n = arr.Length;

int\[\] output = new intn;

int max = arr0;

for (int i = 1; i < n; i++)

{

if (arri > max)

{

max = arri;

}

}

int\[\] count = new intmax + 1;

for (int i = 0; i < n; i++)

{

countarr\[i]++;

}

for (int i = 1; i <= max; i++)

{

counti += counti - 1;

}

for (int i = n - 1; i >= 0; i--)

{

outputcount\[arr\[i] - 1] = arri;

countarr\[i]--;

}

for (int i = 0; i < n; i++)

{

arri = outputi;

}

}

}

9、桶排序(Bucket Sort)

using System;

using System.Collections.Generic;

class BucketSort

{

public static void Sort(int\[\] arr)

{

int minValue = arr0;

int maxValue = arr0;

for (int i = 1; i < arr.Length; i++)

{

if (arri < minValue)

minValue = arri;

else if (arri > maxValue)

maxValue = arri;

}

int bucketSize = maxValue - minValue + 1;

List<int>\[\] buckets = new List<int>bucketSize;

for (int i = 0; i < bucketSize; i++)

bucketsi = new List<int>();

for (int i = 0; i < arr.Length; i++)

bucketsarr\[i - minValue].Add(arri);

int index = 0;

for (int i = 0; i < bucketSize; i++)

{

int\[\] temp = bucketsi.ToArray();

if (temp.Length > 0)

{

Array.Sort(temp);

for (int j = 0; j < temp.Length; j++)

{

arrindex = tempj;

index++;

}

}

}

}

static void Main(string\[\] args)

{

int\[\] arr = { 4, 2, 7, 1, 9, 5, 3, 6, 8 };

Console.WriteLine("Before sorting:");

foreach (int element in arr)

Console.Write(element + " ");

Sort(arr);

Console.WriteLine("\n\nAfter sorting:");

foreach (int element in arr)

Console.Write(element + " ");

Console.ReadLine();

}

}
10、基数排序(Radix Sort)

using System;

class RadixSort

{

public static void Sort(int\[\] arr)

{

int max = FindMax(arr);

for (int exp = 1; max / exp > 0; exp *= 10)

CountSort(arr, exp);

}

public static void CountSort(int\[\] arr, int exp)

{

int n = arr.Length;

int\[\] output = new intn;

int\[\] count = new int10;

for (int i = 0; i < 10; i++)

counti = 0;

for (int i = 0; i < n; i++)

count(arr\[i / exp) % 10]++;

for (int i = 1; i < 10; i++)

counti += counti - 1;

for (int i = n - 1; i >= 0; i--)

{

outputcount\[(arr\[i / exp) % 10] - 1] = arri;

count(arr\[i / exp) % 10]--;

}

for (int i = 0; i < n; i++)

arri = outputi;

}

public static int FindMax(int\[\] arr)

{

int max = arr0;

for (int i = 1; i < arr.Length; i++)

{

if (arri > max)

max = arri;

}

return max;

}

static void Main(string\[\] args)

{

int\[\] arr = { 170, 45, 75, 90, 802, 24, 2, 66 };

Console.WriteLine("Before sorting:");

foreach (int element in arr)

Console.Write(element + " ");

Sort(arr);

Console.WriteLine("\n\nAfter sorting:");

foreach (int element in arr)

Console.Write(element + " ");

Console.ReadLine();

}

}

以上代码分别实现了10大算法。请注意,如果需要对其他类型的数据进行排序,需要进行相应的修改。

相关推荐
开源Z41 分钟前
LeetCode 42 · 接雨水:从暴力到双指针的三步优化
算法·leetcode
旖-旎1 小时前
《LeetCode 695 岛屿的最大面积 FloodFill DFS 解法》
c++·算法·力扣·深度优先遍历·floodfill
syagain_zsx1 小时前
STL 之 vector 讲练结合
c++·算法
MartinYeung53 小时前
[论文学习]DP2Unlearning:高效且具保证的大型语言模型遗忘框架(基于差分隐私的 LLM Unlearning 方法)
学习·算法·语言模型
Tian_Hang3 小时前
C++原型模式(Protype)
开发语言·c++·算法
bIo7lyA8v3 小时前
算法复杂度的渐进分析与实际运行时间的差异的技术8
算法
yuan199974 小时前
欧拉梁静力与屈曲计算的 MATLAB 实现(有限差分法 + 解析解)
开发语言·算法·matlab
汉克老师5 小时前
GESP7级C++考试语法知识(二、指数函数(3、综合练习)
c++·算法·数学建模·指数函数·gesp7级·复利
Seraphina_Lily5 小时前
深入C语言底层:隐式类型转换、整数提升与截断的“致命”陷阱
c语言·开发语言·算法