stl sort和qsort的使用
摘要:
好不容易使用了下stl的qsort函数,顺便和sort函数一起总结下:很多时候我们都需要用到排序。 例如: 1 #include 2 #include 3 4 using namespace std; 5 6 int a[5] = {2, 1, 3, 5, 6};//对这个数组排序 7 in... 阅读全文
posted @ 2014-04-21 00:00 jec 阅读(341) 评论(0) 推荐(0) 编辑