快速排序
摘要:
/***原版快速排序***/#include using namespace std;void swap(int &a,int &b){ int c=a; a=b; b=c;}int partion(int *array,int _low,int _high){ int pkey; pkey=arr... 阅读全文
posted @ 2012-10-12 23:06 Vulkan 阅读(131) 评论(0) 推荐(0) 编辑