Given two arrays that are duplicates of each other except one element, that is one element from one of the array is missing, we need to find that missing element.
Examples:
Input: arr1[] = {1, 4, 5, 7, 9}
arr2[] = {4, 5, 7, 9}
Output: 1
1 is missing from second array.
Input: arr1[] = {2, 3, 4, 5}
arr2[] = {2, 3, 4, 5, 6}
Output: 6
6 is missing from first array.
One simple solution is to iterate over arrays and check element by element and flag the missing element when an unmatched element is found, but this solution requires linear time oversize of the array.
Another efficient solution is based on a binary search approach. Algorithm steps are as follows:
- Start a binary search in a bigger array and get mid as (lo + hi) / 2
- If the value from both arrays is the same then the missing element must be in the right part so set lo as mid
- Else set hi as mid because the missing element must be in the left part of the bigger array if mid-elements are not equal.
- A special case is handled separately as for single element and zero elements array, the single element itself will be the missing element.
If the first element itself is not equal then that element will be the missing element./li>
Below is the implementation of the above steps
PHP
<?php
function findMissingUtil( $arr1 , $arr2 , $N )
{
if ( $N == 1)
return $arr1 [0];
if ( $arr1 [0] != $arr2 [0])
return $arr1 [0];
$lo = 0;
$hi = $N - 1;
while ( $lo < $hi )
{
$mid = ( $lo + $hi ) / 2;
if ( $arr1 [ $mid ] == $arr2 [ $mid ])
$lo = $mid ;
else
$hi = $mid ;
if ( $lo == $hi - 1)
break ;
}
return $arr1 [ $hi ];
}
function findMissing( $arr1 , $arr2 ,
$M , $N )
{
if ( $N == $M - 1)
echo "Missing Element is "
, findMissingUtil( $arr1 ,
$arr2 , $M ) ;
else if ( $M == $N - 1)
echo "Missing Element is "
, findMissingUtil( $arr2 ,
$arr1 , $N );
else
echo "Invalid Input" ;
}
$arr1 = array (1, 4, 5, 7, 9);
$arr2 = array (4, 5, 7, 9);
$M = count ( $arr1 );
$N = count ( $arr2 );
findMissing( $arr1 , $arr2 , $M , $N );
?>
|
Output :
Missing Element is 1
Time Complexity: O(logM + logN), where M and N represents the size of the given two arrays.
Auxiliary Space: O(1), no extra space is required, so it is a constant.
What if input arrays are not in the same order?
In this case, the missing element is simply XOR of all elements of both arrays. Thanks to Yolo Song for suggesting this.
PHP
<?php
function findMissing( $arr1 , $arr2 ,
$M , $N )
{
if ( $M != $N - 1 && $N != $M - 1)
{
echo "Invalid Input" ;
return ;
}
$res = 0;
for ( $i = 0; $i < $M ; $i ++)
$res = $res ^ $arr1 [ $i ];
for ( $i = 0; $i < $N ; $i ++)
$res = $res ^ $arr2 [ $i ];
echo "Missing element is " , $res ;
}
$arr1 = array (4, 1, 5, 9, 7);
$arr2 = array (7, 5, 9, 4);
$M = sizeof( $arr1 );
$N = sizeof( $arr2 );
findMissing( $arr1 , $arr2 , $M , $N );
?>
|
Output :
Missing Element is 1
Time Complexity: O(M + N), where M and N represents the size of the given two arrays.
Auxiliary Space: O(1), no extra space is required, so it is a constant.
Please refer complete article on Find lost element from a duplicated array for more details!
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
09 Dec, 2022
Like Article
Save Article