摘要: 版本一:参考《大话数据结构》中的代码实现。 #define MAXSIZE 10 void merging(int* source,int* result, int start, int middle, int end) { int i,j,k; k=start,i=start,j=middle+1; while(i<=mid... 阅读全文
posted @ 2013-07-24 19:37 jiayouwyhit 阅读(261) 评论(0) 推荐(0)