-
冒泡排序法
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace 程序算法
- {
-
-
-
-
-
-
- publicclass 冒泡算法
- {
- publicvoid Sort(int[] arr)
- {
- int temp;
- for (int i = 0; i < arr.Length; i++)
- {
- for (int j = 0; j < arr.Length - i-1; j++)
- {
-
-
-
-
-
-
-
- if (arr[j] < arr[j + 1])
- {
- temp = arr[j + 1];
- arr[j + 1] = arr[j];
- arr[j] = temp;
- }
- }
- }
- }
- publicstaticvoid Main(string[] args)
- {
- 冒泡算法 maoPao = new 冒泡算法();
- int[] array = newint[] { 1, 3, 2, 10, 13, 16, 42, 36, 77, 37, 99, 100 };
- maoPao.Sort(array);
- foreach (int k in array)
- {
- Console.Write(k);
- Console.Write(" ");
- }
- Console.WriteLine();
- }
- }
- }
-
相关阅读:
【正视CSS 03】block与position,出门在外的朋友端午节快乐
【正视CSS 07】再看verticalalign
【正视CSS 06】构建我们自己的世界观!
【正视CSS 02】inline与lineheight、float、absolute的故事
【初窥javascript奥秘之闭包】叶大侠病都好了,求不踩了:)
【javascript面向对象之路】让我们一起来坦克大战吧01
Python学习之三:《Dive in Python》学习笔记二
恢复GMail选择栏(All None Read Unread….)的油猴(GreaseMonkey)脚本
群聊天时学习到的两个JS知识(变量范围,Foreach顺序)
利用宏自动附加到WebServer进程
-
原文地址:https://www.cnblogs.com/cyjch/p/2420886.html
Copyright © 2020-2023
润新知