leetcode | 面试题40. 最小的k个数
程序员文章站
2024-03-15 09:00:41
...
class Solution {
public:
vector<int> getLeastNumbers(vector<int>& arr, int k) {
vector<int> res;
sort(arr.begin(), arr.end());
for(int i = 0; i < k; i++)
{
res.push_back(arr[i]);
}
return res;
}
};
上一篇: LeetCode 494.目标和(中等)
下一篇: LeetCode - 494. 目标和
推荐阅读
-
LeetCode每日一题———面试题40. 最小的k个数
-
LeetCode 494.目标和(中等)
-
leetcode | 面试题40. 最小的k个数
-
window.location.href在火狐下不兼容的解决 博客分类: 浏览器兼容性问题篇 window.location.hreffirefoxmozilla不兼容
-
window.location.href以post方式传递参数的方法 博客分类: web前端 hrefpostget
-
[算法]LeetCode每日一题--41. 缺失的第一个正数(Java)
-
使用window.location时在Firefox中的不兼容 博客分类: jquery... window.location.hreffirefoxreload
-
Kotlin的Android基础篇探究数据View(二)
-
Leetcode——945. 使数组唯一的最小增量
-
LeetCode刷题: 【945】使数组唯一的最小增量