冬日夜雨tanjun.blog.chinaunix.net
scutan
全部博文(54)
Netfilter(1)
基础知识笔记(1)
Linux网卡驱动学(4)
2010年(10)
2009年(24)
2008年(20)
Bean_lee
leon_yu
wkq5325
welch198
c/unix
HenryFou
pinkmemo
小雅贝贝
zhouqi50
hjhai
13814089
下雨天不
丸喵喵
浪花小雨
wait_rab
aspon
hiyachen
xuelei_5
分类:
2009-03-12 01:20:56
#!/usr/bin/perl -wuse strict;sub insertSort{ my ($i, $j, $key); for ($i = 1; $i < scalar(@_); $i++) { $key = $_[$i]; $j = $i - 1; while (($j >= 0) && ($_[$j] > $key)) { $_[$j+1] = $_[$j]; $j--; } $_[$j+1] = $key; }}my @arr = (10, 21, 2, 1, 3, 45, 2, 932, 32, 27, 86, 65, 576, 434, 76753);print "@arr\n";print "After\n";insertSort(@arr);print "@arr\n";
上一篇:排序算法4 希尔排序
下一篇:排序算法5 快速排序
登录 注册