📜  未排序数组中的第k个缺失元素

📅  最后修改于: 2021-04-21 20:55:12             🧑  作者: Mango

给定未排序的序列a [],任务是在数组元素的递增序列中找到第K个丢失的连续元素,即按排序顺序考虑数组并找到第k个丢失的数字。如果没有第k个缺失元素,则输出-1。

注意:仅元素存在于要考虑的最小和最大元素范围内。
例子:

Input: arr[] = {2, 4, 10, 7}, k = 5
Output: 9
Missing elements in the given array: 3, 5, 6, 8, 9
5th missing is 9.

Input: arr[] = {1, 3, 4}, k = 5
Output: -1

方法1:对数组进行排序,并使用已排序数组中第k个缺失元素中使用的方法。

方法2:

  1. 将所有元素插入unordered_set中。
  2. 查找数组的最小和最大元素。
  3. 从最小到最大遍历元素。
    • 检查当前元素是否存在于集合中。
    • 如果不是,则通过计算缺失元素来检查是否缺失kth。
    • 如果当前缺少此元素,则返回当前元素。

下面是上述方法的实现:

C++
// C++ implementation of the above approach
#include 
using namespace std;
  
// Function to find the sum
// of minimum of all subarrays
int findKth(int arr[], int n, int k)
{
  
    unordered_set missing;
    int count = 0;
  
    // Insert all the elements in a set
    for (int i = 0; i < n; i++)
        missing.insert(arr[i]);
  
    // Find the maximum and minimum element
    int maxm = *max_element(arr, arr + n);
    int minm = *min_element(arr, arr + n);
  
    // Traverse from the minimum to maximum element
    for (int i = minm + 1; i < maxm; i++) {
        // Check if "i" is missing
        if (missing.find(i) == missing.end())
            count++;
  
        // Check if it is kth missing
        if (count == k)
            return i;
    }
  
    // If no kth element is missing
    return -1;
}
  
// Driver code
int main()
{
    int arr[] = { 2, 10, 9, 4 };
    int n = sizeof(arr) / sizeof(arr[0]);
    int k = 5;
    cout << findKth(arr, n, k);
  
    return 0;
}


Java
// Java implementation of the above approach
import java.util.*;
  
class GFG
{
  
    // Function to find the sum
    // of minimum of all subarrays
    static int findKth(int arr[], int n, int k) 
    {
  
        HashSet missing = new HashSet<>();
        int count = 0;
  
        // Insert all the elements in a set
        for (int i = 0; i < n; i++)
        {
            missing.add(arr[i]);
        }
  
        // Find the maximum and minimum element
        int maxm = Arrays.stream(arr).max().getAsInt();
        int minm = Arrays.stream(arr).min().getAsInt();
  
        // Traverse from the minimum to maximum element
        for (int i = minm+1; i < maxm; i++)
        {
            // Check if "i" is missing
            if (!missing.contains(i)) 
            { 
                count++;
            }
  
            // Check if it is kth missing
            if (count == k)
            { 
                return i;
            }
        }
          
        // If no kth element is missing
        return -1;
    }
  
    // Driver code
    public static void main(String[] args) 
    {
        int arr[] = {2, 10, 9, 4};
        int n = arr.length;
        int k = 5;
        System.out.println(findKth(arr, n, k));
    }
}
  
/* This code contributed by PrinciRaj1992 */


Python
# Python3 implementation of the above approach
  
# Function to find the sum
# of minimum of all subarrays
def findKth( arr, n, k):
  
    missing = dict()
    count = 0
  
    # Insert all the elements in a set
    for i in range(n):
        missing[arr[i]] = 1
  
    # Find the maximum and minimum element
    maxm = max(arr)
    minm = min(arr)
  
    # Traverse from the minimum to maximum element
    for i in range(minm + 1, maxm):
          
        # Check if "i" is missing
        if (i not in missing.keys()):
            count += 1
  
        # Check if it is kth missing
        if (count == k):
            return i
      
    # If no kth element is missing
    return -1
  
# Driver code
arr = [2, 10, 9, 4 ]
n = len(arr)
k = 5
print(findKth(arr, n, k))
  
# This code is contributed by Mohit Kumar


C#
// C# implementation of the above approach 
using System;
using System.Linq;
using System.Collections.Generic;
  
class GFG 
{ 
  
    // Function to find the sum 
    // of minimum of all subarrays 
    static int findKth(int []arr, int n, int k) 
    { 
  
        HashSet missing = new HashSet(); 
        int count = 0; 
  
        // Insert all the elements in a set 
        for (int i = 0; i < n; i++) 
        { 
            missing.Add(arr[i]); 
        } 
  
        // Find the maximum and minimum element 
        int maxm = arr.Max(); 
        int minm = arr.Min(); 
  
        // Traverse from the minimum to maximum element 
        for (int i = minm + 1; i < maxm; i++) 
        { 
            // Check if "i" is missing 
            if (!missing.Contains(i)) 
            { 
                count++; 
            } 
  
            // Check if it is kth missing 
            if (count == k) 
            { 
                return i; 
            } 
        } 
          
        // If no kth element is missing 
        return -1; 
    } 
  
    // Driver code 
    public static void Main(String[] args) 
    { 
        int []arr = {2, 10, 9, 4}; 
        int n = arr.Length; 
        int k = 5; 
        Console.WriteLine(findKth(arr, n, k)); 
    } 
} 
  
// This code has been contributed by 29AjayKumar


PHP


输出:
8