首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴不玩虚的的代码贴全部
#include <iostream>
using namespace std;
template<class Type>
void Swap(Type *array,Type a,Type b)
{ Type temp;
temp=array[a];
array[a]=array[b];
array[b]=temp;
}
template<class Type>
void FastSort(Type *array,Type n)
{ for(int i=0;i<n;i++)
......................
阅读全部 | 2013年5月11日 06:16
1
不玩虚的