📜  在连续数字的排序数组中查找缺失的元素

📅  最后修改于: 2021-05-07 06:57:04             🧑  作者: Mango

给定n个不同整数的数组arr [] 。元素按升序顺序放置,而缺少一个元素。任务是找到缺少的元素。

例子:

原则:

算法

下面是上述方法的实现:

C++
// CPP implementation of the approach
#include
using namespace std;
  
// Function to return the missing element
int findMissing(int arr[], int n)
{
  
    int l = 0, h = n - 1;
    int mid;
  
    while (h > l) 
    {
  
        mid = l + (h - l) / 2;
  
        // Check if middle element is consistent
        if (arr[mid] - mid == arr[0]) 
        {
  
            // No inconsistency till middle elements
            // When missing element is just after
            // the middle element
            if (arr[mid + 1] - arr[mid] > 1)
                return arr[mid] + 1;
            else 
            {
                // Move right
                l = mid + 1;
            }
        }
        else 
        {
  
            // Inconsistency found
            // When missing element is just before
            // the middle element
            if (arr[mid] - arr[mid - 1] > 1)
                return arr[mid] - 1;
            else 
            {
                // Move left
                h = mid - 1;
            }
        }
    }
  
    // No missing element found
    return -1;
}
  
// Driver code
int main()
{
    int arr[] = { -9, -8, -7, -5, -4, -3, -2, -1, 0 };
    int n = sizeof(arr)/sizeof(arr[0]);
  
    cout << (findMissing(arr, n));
}
      
// This code iscontributed by
// Surendra_Gangwar


Java
// Java implementation of the approach
class GFG {
  
    // Function to return the missing element
    public static int findMissing(int arr[], int n)
    {
  
        int l = 0, h = n - 1;
        int mid;
  
        while (h > l) {
  
            mid = l + (h - l) / 2;
  
            // Check if middle element is consistent
            if (arr[mid] - mid == arr[0]) {
  
                // No inconsistency till middle elements
                // When missing element is just after
                // the middle element
                if (arr[mid + 1] - arr[mid] > 1)
                    return arr[mid] + 1;
                else {
  
                    // Move right
                    l = mid + 1;
                }
            }
            else {
  
                // Inconsistency found
                // When missing element is just before
                // the middle element
                if (arr[mid] - arr[mid - 1] > 1)
                    return arr[mid] - 1;
                else {
  
                    // Move left
                    h = mid - 1;
                }
            }
        }
  
        // No missing element found
        return -1;
    }
  
    // Driver code
    public static void main(String args[])
    {
        int arr[] = { -9, -8, -7, -5, -4, -3, -2, -1, 0 };
        int n = arr.length;
  
        System.out.print(findMissing(arr, n));
    }
}


Python3
# Python implementation of the approach
  
# Function to return the missing element
def findMissing(arr, n):
  
    l, h = 0, n - 1
    mid = 0
  
    while (h > l):
  
        mid = l + (h - l) // 2
  
        # Check if middle element is consistent
        if (arr[mid] - mid == arr[0]):
  
            # No inconsistency till middle elements
            # When missing element is just after
            # the middle element
            if (arr[mid + 1] - arr[mid] > 1):
                return arr[mid] + 1
            else:
  
                # Move right
                l = mid + 1
              
        else:
  
            # Inconsistency found
            # When missing element is just before
            # the middle element
            if (arr[mid] - arr[mid - 1] > 1):
                return arr[mid] - 1
            else:
  
                # Move left
                h = mid - 1
              
    # No missing element found
    return -1
  
# Driver code
arr = [-9, -8, -7, -5, -4, -3, -2, -1, 0 ]
n = len(arr)
  
print(findMissing(arr, n))
  
# This code is contributed
# by mohit kumar


C#
// C# implementation of the approach
using System;
  
class GFG
{
  
    // Function to return the missing element
    public static int findMissing(int[] arr, int n)
    {
  
        int l = 0, h = n - 1;
        int mid;
  
        while (h > l)
        {
  
            mid = l + (h - l) / 2;
  
            // Check if middle element is consistent
            if (arr[mid] - mid == arr[0]) 
            {
  
                // No inconsistency till middle elements
                // When missing element is just after
                // the middle element
                if (arr[mid + 1] - arr[mid] > 1)
                    return arr[mid] + 1;
                else
                {
  
                    // Move right
                    l = mid + 1;
                }
            }
            else 
            {
  
                // Inconsistency found
                // When missing element is just before
                // the middle element
                if (arr[mid] - arr[mid - 1] > 1)
                    return arr[mid] - 1;
                else 
                {
  
                    // Move left
                    h = mid - 1;
                }
            }
        }
  
        // No missing element found
        return -1;
    }
  
    // Driver code
    public static void Main()
    {
        int[] arr = { -9, -8, -7, -5, -4, -3, -2, -1, 0 };
        int n = arr.Length;
  
        Console.WriteLine(findMissing(arr, n));
    }
}
  
// This code is contributed by Code_Mech


PHP
 $l)
    { 
  
        $mid = floor($l + ($h - $l) / 2); 
  
        // Check if middle element is consistent 
        if ($arr[$mid] - $mid == $arr[0]) 
        { 
  
            // No inconsistency till middle elements 
            // When missing element is just after 
            // the middle element 
            if ($arr[$mid + 1] - $arr[$mid] > 1) 
                return $arr[$mid] + 1; 
            else 
            { 
  
                // Move right 
                $l = $mid + 1; 
            } 
        } 
        else 
        { 
  
            // Inconsistency found 
            // When missing element is just before 
            // the middle element 
            if ($arr[$mid] - $arr[$mid - 1] > 1) 
                return $arr[$mid] - 1; 
            else 
            { 
  
                // Move left 
                $h = $mid - 1; 
            } 
        } 
    } 
  
    // No missing element found 
    return -1; 
} 
  
// Driver code 
$arr = array( -9, -8, -7, -5, -
               4, -3, -2, -1, 0 ); 
$n = count($arr); 
  
echo findMissing($arr, $n); 
  
// This code is contributed by Ryuga
?>


输出:
-6