插入排序
Posted 込戲冭氵罙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入排序相关的知识,希望对你有一定的参考价值。
1 #include<stdio.h> 2 int main() 3 { 4 int a[5]= {3,75,2,7,6}; 5 int i,j,temp; 6 for(i=1;i<5;i++) 7 { 8 temp = a[i]; 9 j = i-1; 10 while(j>=0 && temp<a[j]) 11 { 12 a[j+1] = a[j]; 13 j--; 14 } 15 a[j+1] = temp; 16 } 17 for(i=0;i<5;i++) 18 19 return 0; 20 }
以上是关于插入排序的主要内容,如果未能解决你的问题,请参考以下文章
代码片段使用复杂的 JavaScript 在 UIWebView 中插入 HTML?
将代码片段插入数据库并在 textarea 中以相同方式显示
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段