C#冒泡排序算法

时间:2021-05-06 23:43:01

用了两种形式的数据,一个是泛型List,一个是数据int[]。记录一下,作为自己学习过程中的笔记。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace 冒泡排序算法
{
class Program
{
static void Main(string[] args)
{
List<int> _list = new List<int>() { , , , , , , , , , };
Bubble(_list);
foreach (var item in _list)
{
Console.WriteLine(item);
}
int[] bortargs = { , , , , , , , , , };
Bubble(bortargs);
foreach (var article in bortargs)
{
Console.WriteLine(article);
}
Console.ReadKey();
}
static void Bubble(List<int> list)
{
int temp = ;
for (int i = list.Count; i > ; i--)
{
for (int j = ; j < i - ; j++)
{
if (list[j] > list[j + ])
{
temp = list[j];
list[j] = list[j + ];
list[j + ] = temp;
}
}
}
} static void Bubble(int[] args)
{
int temp = ;
for (int i = args.Length; i > ; i--)
{
for (int j = ; j < i - ; j++)
{
if (args[j] > args[j + ])
{
temp = args[j];
args[j] = args[j + ];
args[j + ] = temp;
}
}
}
} }
}