摘要: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
浙公网安备 33010602011771号