博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
冒泡排序
阅读量:5126 次
发布时间:2019-06-13

本文共 1424 字,大约阅读时间需要 4 分钟。

冒泡排序

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6  7 namespace 冒泡排序 8 { 9     class Program10     {11         static void Main(string[] args)12         {13             int[] oldArray = { 23, 44, 66, 76, 98, 11, 3, 9, 7 };14             Console.Write("原始数组:");15             foreach (var item in oldArray)16             {17                 Console.Write(item + " ");18             }19             PrintArray(oldArray);20 21             Console.ReadKey();22         }23         public static void PrintArray(int[] array)24         {25             int temp = 0;26             for (int i = 0; i < array.Length; i++)27             {28                 for (int j = 0; j < array.Length - 1 - i; j++)29                 {30                     if (array[j] > array[j + 1])31                     {32                         temp = array[j];33                         array[j] = array[j + 1];34                         array[j + 1] = temp;35                     }36                 };37                 Console.WriteLine();38                 Console.WriteLine();39                 Console.Write("第"+(i+1)+"次排序后的结果:");40                 foreach (var item in array)41                 {42                     Console.Write(item + " ");43                 }44             }45         }46     }47 }
View Code

 

转载于:https://www.cnblogs.com/hghrpg/p/4590423.html

你可能感兴趣的文章
取IP地址的几种方法
查看>>
替换多个文件关键字的方法
查看>>
echo的一些参数
查看>>
文件和目录权限相关命令
查看>>
用户组相关命令 chown chmod
查看>>
htpasswd创建密码文件
查看>>
vi 一些快捷键
查看>>
获取文件权限为数字的几种方法
查看>>
date命令的一些参数
查看>>
more命令、less命令、head命令、tail命令、tailf命令、cut命令
查看>>
环境变量
查看>>
/etc/login.defs配置文件 /etc/default/useradd配置文件
查看>>
查看用户相关命令w\who\last、lastlog
查看>>
文件名相关命令
查看>>
用户和用户组相关命令
查看>>
sort命令和uniq命令
查看>>
crontab定时任务总结
查看>>
split命令
查看>>
cat和tac、rev
查看>>
wc命令
查看>>