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;
        }
    };
  • 相关阅读:
    MySql从一窍不通到入门(五)Sharding:分表、分库、分片和分区
    rac 关库 启库
    rac 配置dg完成版
    CRS添加、删除节点
    分区表性能窥测
    传入时间按月分区并创建每月表空间
    python to be linux daemon
    python to be Windows Daemon
    Shell数组相关操作
    Python操作PDF与Tiff文件
  • 原文地址:https://www.cnblogs.com/pk28/p/7374920.html
Copyright © 2011-2022 走看看