2010年6月3日
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--staticintPartition(int[]array,intlow,inthigh){intpivot=array[low];while(low<high){while(low<hi... 阅读全文
posted @ 2010-06-03 22:37 havies 阅读(336) 评论(0) 推荐(1) 编辑
  2010年6月2日
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--staticvoidBubbleSort(int[]array){for(inti=0;i<array.Length;i++){for(intj=i+1;j<array.Length;j+... 阅读全文
posted @ 2010-06-02 23:24 havies 阅读(241) 评论(0) 推荐(0) 编辑
  2010年6月1日
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--staticvoidShellPass(int[]array,intd){for(inti=d;i<array.Length;i++){if(array[i]<array[i-d]){in... 阅读全文
posted @ 2010-06-01 23:39 havies 阅读(178) 评论(0) 推荐(0) 编辑
  2010年5月26日
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--staticvoidInsertSort(int[]array){for(inti=1;i<array.Length;i++){if(array[i]<array[i-1]){inttem... 阅读全文
posted @ 2010-05-26 23:58 havies 阅读(209) 评论(0) 推荐(0) 编辑