C#里面实现数据很简单用个sort()就可以了~~~
例如:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace 回答问题3
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[5] { 1, 8, 5, 4, 6 };
Array.Sort(a);
foreach (int number in a)
{
Console.WriteLine(number);
}
}
}
}