经典排序之归并排序
摘要:
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>/** 分治法排序: 1、分解。2、解决。3、合并。**/void merge(int* a,int p,int q,int r){ int i,j; for(i=p,j=q; i<q && j<r;) { if(a[i] <= a[j]) { i++; continue; }else { int k... 阅读全文
posted @ 2013-03-20 21:28 NewPanderKing 阅读(351) 评论(0) 推荐(0) 编辑