A 第K小数 题目描述: 给你一个长度为n的序列,求序列中第k小数的多少。 思路: 因为数字比较小,用桶排序,可以做到O(n) 代码: #include <bits/stdc++.h> using namespace std; const int N=5e6+10; inline int read(){ int x = 0, f = 1; char ch = getchar(); while(ch < '0' || ch > '9'){ if (ch == '-') f = -1; ch =...