658. Find K Closest Elements
Problem:
Given a sorted array, two integers k and x, find the k closest elements to x in the array. The result should also be sorted in ascending order. If there is a tie, the smaller elements are always preferred.
Example 1:
Input: [1,2,3,4,5], k=4, x=3
Output: [1,2,3,4]
Example 2:
Input: [1,2,3,4,5], k=4, x=-1
Output: [1,2,3,4]
Note:
- The value k is positive and will always be smaller than the length of the sorted array.
- Length of the given array is positive and will not exceed \(10^4\)
Absolute value of elements in the array and x will not exceed \(10^4\)
思路:
Solution (C++):
struct Comp {
bool operator()(int a, int b) {
if (abs(a) != abs(b)) return abs(a) > abs(b);
return a > b;
}
};
vector<int> findClosestElements(vector<int>& arr, int k, int x) {
for (int i = 0; i < arr.size(); ++i) arr[i] -= x;
priority_queue<int, vector<int>, Comp> que;
vector<int> res;
for (auto n : arr) que.emplace(n);
while (k-- && !que.empty()) {
res.push_back(que.top() + x);
que.pop();
}
sort(res.begin(), res.end());
return res;
}
性能:
Runtime: 388 ms Memory Usage: 14 MB
思路:
Solution (C++):
性能:
Runtime: ms Memory Usage: MB
相关链接如下:
知乎:littledy
GitHub主页:https://github.com/littledy
github.io:https://littledy.github.io/
欢迎关注个人微信公众号:小邓杂谈,扫描下方二维码即可
作者:littledy
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。

浙公网安备 33010602011771号