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

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

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace csharpsTest{    class Program    {        static void Main(string[] args)        {            int[] arr = { 5, 2, 3, 6 };            Program mProgram = new Program();            mProgram.BubbleSort(arr);            for (int i = 0; i < arr.Length; ++i)            {                System.Console.Write(" " + arr[i]);            }        }        void BubbleSort(int[] arr)        {            int length = arr.Length;            int testTimes = 0;            for (int i = length - 1; i > 0; --i)            {                bool isAlready = true;                for (int j = 1; j <= i; ++j)                {                    if (arr[j - 1] > arr[j])                    {                        Swap(ref arr[j - 1], ref arr[j]);                        isAlready = false;                    }                }                testTimes++;                if (isAlready)                {                    break;                }            }            System.Console.WriteLine("testTims:" + testTimes);        }        void Swap(ref int a, ref int b)        {            int temp = a;            a = b;            b = temp;        }    }}

冒泡交换排序;

不停的对比、交换相邻的两个数据,并吐出最大的那个,直到吐光。

添加bool值检测是否已经有序,并break。

 

转载于:https://www.cnblogs.com/sun-shadow/p/5353672.html

你可能感兴趣的文章
求一个字符串中最长回文子串的长度(承接上一个题目)
查看>>
简单权限管理系统原理浅析
查看>>
springIOC第一个课堂案例的实现
查看>>
求输入成绩的平均分
查看>>
php PDO (转载)
查看>>
wordpress自动截取文章摘要代码
查看>>
[置顶] 一名优秀的程序设计师是如何管理知识的?
查看>>
scanf和gets
查看>>
highcharts 图表实例
查看>>
ubuntu下如何查看用户登录及系统授权相关信息
查看>>
秋季学期学习总结
查看>>
SpringBoot 优化内嵌的Tomcat
查看>>
【LaTeX】E喵的LaTeX新手入门教程(1)准备篇
查看>>
highcharts曲线图
查看>>
extjs动态改变样式
查看>>
PL/SQL Developer 查询的数据有乱码或者where 字段名=字段值 查不出来数据
查看>>
宏定义
查看>>
笔记:git基本操作
查看>>
生成php所需要的APNS Service pem证书的步骤
查看>>
JavaWeb之JSON
查看>>