Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Find the missing element from two given arrays of integers except one element

C++ Array: Exercise-22 with Solution

Write a C++ program to find the missing element from two given arrays of integers except one element.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;
 
int findMissing(int array1[], int array2[], int s1, int s2)
{
    int result = 0;
    for (int i=0; i<s1; i++)
       result = result^array1[i];
    for (int i=0; i<s2; i++)
       result = result^array2[i];
 
    return result;
}
int main()
{
    int array1[] = {3, 1, 5, 7, 9};
    int array2[] = {3, 7, 5, 9};
     int mn;
     int s1 = sizeof(array1) / sizeof(array1[0]);
    int s2 = sizeof(array2) / sizeof(array2[0]);
        if (s1 != s2-1 && s2 != s1-1)
    {
        cout << "Invalid Input";
        return 0;
    }
    
    cout << "Original arrays: ";
    
    cout << "\nFirst array: ";
    for (int i=0; i < s1; i++) 
    cout << array1[i] <<" ";
    
    cout << "\nSecond array: ";
    for (int i=0; i < s2; i++) 
    cout << array2[i] <<" ";
    
    mn = findMissing(array1, array2, s1, s2);
    cout <<"\nMissing number: " << mn;
    return 0; 
}

Sample Output:

Original arrays: 
First array: 3 1 5 7 9 
Second array: 3 7 5 9 
Missing number: 1

Flowchart:

Flowchart: Find the missing element from two given arrays of intgers except one element

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to find the two repeating elements in a given array of integers.
Next: Write a C++ program to find the element that appears once in an array of integers and every other element appears twice.

What is the difficulty level of this exercise?