zoukankan      html  css  js  c++  java
  • leetcode 658. Find K Closest Elements

    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:

    1. The value k is positive and will always be smaller than the length of the sorted array.
    2. Length of the given array is positive and will not exceed 104
    3. Absolute value of elements in the array and x will not exceed 104

    题目大意:求离x最近的k元素,注意输出的是值,而不是下标。并且按照升序列输出。

    麻烦不要再爬我博客了。“IT大道“你妹的。

    思路就是,每个元素与x做差并记录下标,按差值排序,然后再找到原来的数组的值,排序输出就行了、

    class Solution {
    public:
        vector<int> findClosestElements(vector<int>& arr, int k, int x) {
            int n = arr.size();
            vector<pair<int, int>> vp;
            for (int i = 0; i < n; ++i) {
                int w = abs(arr[i] - x);
                vp.push_back({w,i});
            }
            sort(vp.begin(), vp.end());
            
            vector<int>v;
            for (int i = 0; i < k ; ++i) {
                v.push_back(arr[vp[i].second]);
            }
            sort(v.begin(), v.end());
            return v;
        }
    };
  • 相关阅读:
    OpenCL、CUDA
    最小和最廉价的超级计算机,DIY的
    组装属于您自己的Tesla个人超级计算机
    多处理器系统
    开源项目Spark简介
    基于Cassandra的日志和分布式小文件存储系统【1】
    网络广告js备忘【2】
    网络广告js备忘【1】
    成功产品的意外
    Cassandra HBase和MongoDb性能比较
  • 原文地址:https://www.cnblogs.com/pk28/p/7374920.html
Copyright © 2011-2022 走看看