2015年8月4日
摘要: 1 #include 2 int GBsort(int *A,int x,int y,int *B) 3 //A是待排列的数组,数组为[x,y),B是备份数组 4 { 5 if(y-x>1) //考虑数组不是单独一个元素的情况 6 { 7 int h=x+(y-x... 阅读全文
posted @ 2015-08-04 17:59 Ricochet! 阅读(187) 评论(0) 推荐(0) 编辑