-
C#排序算法 之 插入排序
- using System;
-
- namespace InsertionSorter
- {
- public class InsertionSorter
- {
- public void Sort(int [] list)
- {
- for(int i=1;i<list.Length;i++)
- {
- int t=list[i];
- int j=i;
- while((j>0)&&(list[j-1]>t))
- {
- list[j]=list[j-1];
- --j;
- }
- list[j]=t;
- }
- }
- }
-
- public class MainClass
- {
- public static void Main()
- {
- int[] iArrary=new int[]{1,13,3,6,10,55,98,2,87,12,34,75,33,47};
- InsertionSorter ii=new InsertionSorter();
- ii.Sort(iArrary);
- for(int m=0;m<iArrary.Length;m++)
- {
- Console.Write("{0}",iArrary[m]);
- Console.WriteLine();
- }
- }
- }
- }
-
相关阅读:
java 8 lambda函数
java nio和io
jetty xml解析
使用spring框架时,使用xml还是注解
tcp/ip基础知识
http的session和cookie
html相关
form之action的绝对路径与相对路径(转载)
MariaDB 10 (MySQL DB) 多主复制并实现读写分离
牛刀小试MySQL学习—MySQL 双主
-
原文地址:https://www.cnblogs.com/encounter/p/2188847.html
Copyright © 2020-2023
润新知