随笔分类 -  基础

快速排序+查找
摘要:1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int maxn=10000; 7 int f[maxn]; 8 void swap(int &a,int &b){int t=a;a=b;b=t;} 9 1... 阅读全文

posted @ 2014-11-13 02:14 雄.. 阅读(179) 评论(0) 推荐(0)

导航