排序
陈止风
个人主页:http://www.yingzinanfei.com
github: https://github.com/cpys
展开
-
ls 按大小和扩展名排序
来源自我的博客 http://www.yingzinanfei.com/2017/02/06/ls-andaxiaohekuozhanmingpaixu/按文件大小排序显示 ls -lSr其中-l为显示详细信息,-S为按文件从大到小排序,-r为逆序排列,-h为以1024为单位显示文件大小ls -l --sort=size按扩展名排序 ls -lX其中-X为按扩展名从小到大排序ls原创 2017-02-06 15:30:24 · 8282 阅读 · 0 评论 -
C++ sort和C语言qsort用法对比
来源自我的博客 int buf[100];C++用法sort(buf, buf + 100);sort(buf, buf + 100, cmp); //数组起始地址,数组结束地址bool cmp(int x, int y){ return x > y;}C语言用法qsort(buf, 100, sizeof(int), cmp); //数组起始地址,元素个数,元素大小,原创 2017-02-04 13:23:40 · 2796 阅读 · 0 评论 -
各类排序算法生成与测试样例代码
来源自我的博客 http://www.yingzinanfei.com/2017/04/01/geleipaixusuanfashengchengyuceshiyanglidaima/#include <iostream>#include <vector>#include <random>#include <algorithm>#include <functional>#includ原创 2017-04-01 10:30:32 · 1736 阅读 · 0 评论