C.R

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年3月15日

摘要: 1 package com.cr.excecise; 2 3 public class Sort { 4 5 public static void main(String[] args) { 6 int num[] = {1,231,4,65,7,8,0,232,151,734,32131}; 7 //quickSort(num,0,10); 8 //bubbleSort(num); 9 insertionSort(num,0,10);10 for(int temp:num) System.out.p... 阅读全文

posted @ 2013-03-15 09:37 lvbinrain 阅读(125) 评论(0) 推荐(0)