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

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

首先看冒泡排序原理:

A B C D(A和B比较完 B和C比较 C和D比较 条件满足就替换)

看完原理就上代码:

using System;using System.Collections.Generic;using System.Text;namespace suanfatest{    class Program    {        static void Main(string[] args)        {            int temp = 0;            int[] arr = { 23, 44, 56, 86, 108, 11, 3, 6, 7 };            Console.WriteLine("排序前的數組是:");                        foreach(int item in arr)            {                Console.Write(item + ", ");            }            for (int i = 0; i < arr.Length-1; i++)            {                for (int j = 0; j < arr.Length -1; j++)                {                    if (arr[j] > arr[j + 1])                    {                        temp = arr[j + 1];                        arr[j + 1] = arr[j];                        arr[j] = temp;                    }                }            }            Console.WriteLine("");            Console.WriteLine("排序後的數組是:");            foreach (int item in arr)            {                Console.Write(item + ", ");            }            Console.WriteLine();            Console.ReadKey();        }    }}

代码分析:

下一个学习插入排序..........

 

转载地址:http://muozl.baihongyu.com/

你可能感兴趣的文章
VMware中centos7无法共享文件夹的问题
查看>>
【C#】listview应用
查看>>
源代码防泄密、图纸防泄密
查看>>
shell
查看>>
7.多态
查看>>
JVM垃圾收集
查看>>
HDU 6077 Time To Get Up【模拟题】【水题】
查看>>
js经典试题之数据类型
查看>>
联想LVCC桌面云解决方案介绍
查看>>
Swap Nodes in Pairs leetcode
查看>>
java流压缩图片
查看>>
小虾视频网站广告屏蔽器 V 5.0
查看>>
图片处理工具包 v3.0
查看>>
test
查看>>
学习日志---linux磁盘矩阵RAID
查看>>
要不要fast-cgi
查看>>
js 获取当前年月日时分秒星期
查看>>
windows日志 编号10 wmi 错误处理
查看>>
win7安装laravel
查看>>
我的友情链接
查看>>