冒泡排序算法
2021-05-05 19:29
标签:nbsp next false random ast date singleton time rgs 冒泡排序算法 标签:nbsp next false random ast date singleton time rgs 原文地址:https://www.cnblogs.com/morec/p/13191722.htmlusing System;
using System.Threading.Tasks;
namespace SingletonDemo
{
class Program
{
static void Main(string[] args)
{
int[] arr = new int[10];
for(int i=0;i9;i++){
arr[i] = new Random(i+DateTime.Now.Millisecond).Next(100,999);
}
Console.WriteLine("排序之前的数组为 :********************************");
Show(arr);
Console.WriteLine();
Console.WriteLine("排序中的数组为 :********************************");
BubbleSort1(arr);
Console.WriteLine("排序之后的数组为 :********************************");
Show(arr);
Console.Read();
}
static void BubbleSort1(int[] arr){
int temp=0;
for(int outer=arr.Length; outer>=1;outer--){
for(int inner =0;inner