青春期不醒症患者
青春期不醒症患者
全部文章
题解
归档
标签
去牛客网
登录
/
注册
青春期不醒症患者的博客
全部文章
/ 题解
(共2篇)
利用好C++标准库,很好解决
class Solution { public: vector<string> Permutation(string str) { if (str.empty()) return {}; sort(str.begin(), str.end()); ...
2019-09-14
41
4251
利用好标准库,轻松解决
利用c++标准库,二分查找,O(logn)复杂度。 class Solution { public: int GetNumberOfK(vector<int> data ,int k) { auto l = lower_bound(data.begin(), da...
2019-09-05
15
2221