- 博客(1)
- 资源 (1)
- 收藏
- 关注
原创 用C语言查找一个字典排序中的第k个数的算法
如1~11的字典排序为:1 10 11 2 3 4 5 6 7 8 9那么第3个数为11.代码如下:#include <stdio.h>long min(long a,long b)//求二者之间的较小数{ if(a>=b) { return b; } else return a;}long getsum(long n,long s){ //...
2018-03-11 11:46:07 707
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人