摘要: import java.util.*; public class MergeSort { /** * @param args */ static void mergeSort(int [] a,int [] temp,int left,int right) { if (left==right) temp[left]=a[left]; else { int temp2[]=ne... 阅读全文
posted @ 2011-06-21 11:27 thinking and coding 阅读(179) 评论(0) 推荐(0) 编辑