摘要: 归并(Merge)排序法是将两个(或两个以上)有序表合并成一个新的有序表,即把待排序序列分为若干个子序列,每个子序列是有序的。然后再把有序子序列合并为整体有序序列。更多信息请参考:http://baike.baidu.com/view/90797.htmC语言代码: 1 #include <stdlib.h> 2 #include <stdio.h> 3 #include <memory.h> 4 #include <time.h> 5 6 void init(int *array, int count) 7 { 8 int n = 0; 9 s 阅读全文
posted @ 2012-12-26 22:31 Yuan Ping 阅读(216) 评论(0) 推荐(0) 编辑