摘要: 各种排序算法实现的收集,肯定有你没有见过的。归并,快排,奇偶排,cocktail 排序,梳排序,计数排序,基数排序,LSD基数排序,shell排序,桶排序,鸽巢排序等1. 归并排序的实现#include <iostream>#include <stdio.h>#include <stdlib.h>#include <string.h>using namespace std;void merage(int a[],int low,int mid,int high){ int *temp = (int *)malloc((high - low + 1 阅读全文
posted @ 2011-08-22 21:51 wtx 阅读(657) 评论(0) 推荐(0) 编辑