骄傲的双子座
jazeltq
全部博文(138)
2014年(1)
2013年(2)
2012年(78)
2011年(13)
2010年(34)
2009年(10)
cynthia
wanttobe
john0226
zyf1122
panda818
chaohona
yimusanr
sundale_
database
分类: LINUX
2010-03-25 16:19:38
void InsertSort(elementypef x[], int n) { int i, j; elementype s; for (i = 0; i < n-1; i++) { s = x[i+1]; j = i; while( j > -1 && s.key < x[j].key) { x[j+1] = x[j]; j--; } x[j+1] = s; } }
上一篇:分治法
下一篇:排序思想总结
登录 注册