插入排序
Posted 夏风微凉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入排序相关的知识,希望对你有一定的参考价值。
插入排序的基本原理就是:从数组的开始循环,判断当前这个数和下一个数的大小,如果大于或者小于
那么,就向上或向下判断是否有大于或小于当前的数
图示:
所以说代码如下:
public void InsertSort(int[] unsort){ for (int i = 1; i < unsort.Length; i++) { if (unsort[i-1]>unsort[i]) { int temp = unsort[i]; int j = i; while (j>0&&unsort[j-1]>temp) { unsort[j] = unsort[j - 1]; j--; } unsort[j] = temp; } } }
static void Main(string[] args) { int[] x = { 6, 2, 4, 1, 5, 9 }; d(x); foreach (var item in x) { if (item > 0) Console.WriteLine(item + ","); } Console.ReadLine(); }
以上是关于插入排序的主要内容,如果未能解决你的问题,请参考以下文章
代码片段使用复杂的 JavaScript 在 UIWebView 中插入 HTML?
将代码片段插入数据库并在 textarea 中以相同方式显示
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段