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 element that appears once in an array of integers and every other element appears twice

C++ Array: Exercise-23 with Solution

Write a C++ program to find the element that appears once in an array of integers and every other element appears twice.

Pictorial Presentation:

C++ Exercises: Find the element that appears once in an array of integers and every other element appears twice

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;
 
int search_single_element(int array1[], int s1)
    {
        int result = array1[0];
        for (int i = 1; i < s1; i++)
            result = result ^ array1[i];
 
        return result;
    }


int main()
{
    int array1[] = {3, 1, 5, 1, 5, 7, 9, 7, 9};
    int se;
 
    int s1 = sizeof(array1) / sizeof(array1[0]);
    
    cout << "Original array: ";
    
    for (int i=0; i < s1; i++) 
    cout << array1[i] <<" ";
    
    se = search_single_element(array1, s1);
    cout <<"\nSingle element: " << se;
    return 0; 
}

Sample Output:

Original array: 3 1 5 1 5 7 9 7 9 
Single element: 3

Flowchart:

Flowchart: Find the element that appears once in an array of integers and every other element appears twice

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to find the missing element from two given arrays of integers except one element.
Next: Write a C++ program to find the first repeating element in an array of integers.

What is the difficulty level of this exercise?