其实排序方法很多的,冒泡,递归 等等,楼上说的是.net框架下的一种方法,简单的话可以用冒泡:
冒泡排序法:是让一个数组中的数两两比较的方法。最后会得到最大或最小数。
原理:原理是复杂地,如果想了解的话可以向我要视频QQ:643955613 建议只记公式吧:(scores是数组)
for (int i = 0; i < scores.Length - 1; i++)
{
for (int j = 0; j < scores.Length - 1 - i; j++)
{
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] scores = { 18, 20, 48, 38, 2, 4, 32, 54, 6, 8, 33 };
for (int i = 0; i < scores.Length - 1; i++)
{
for (int j = 0; j < scores.Length - 1 - i; j++)
{
if (scores[j] > scores[j + 1])//注意“>”表示从小到大,“<”从大到小
{
int temp = scores[j];
scores[j] = scores[j + 1];
scores[j + 1] = temp;
}
}
}
for (int i = 0; i < scores.Length; i++)
{
Console.WriteLine(scores[i]);
}
Console.ReadKey();
}
}
}
|