Java Program to Find the Missing Element in an Integer Array

This is the Java Program to Find the Missing Element in an Integer Array.

Problem Description

Given an array of n-1 integers having no duplicates, and containing the integers in the range 1 to n.
Find out the missing integer.
Example:
Array = [ 1, 2, 4, 5]

Output :
Missing integer = 3

Problem Solution

Take two variables to say x and y, in x store the XOR of all array elements and in y store the XOR of integers from 1 to n. Finally, take the result of XOR of x and y, this result is our missing integer.

Program/Source Code

Here is the source code of the Java Program to Find the Missing Element in an Integer Array. The program is successfully compiled and tested using IDE IntelliJ Idea in Windows 7. The program output is also shown below.

advertisement
  1.  
  2. //Java Program to Find the Missing Element in an Integer Array.
  3.  
  4. import java.io.BufferedReader;
  5. import java.io.InputStreamReader;
  6.  
  7. public class MissingInteger {
  8.     // Function to calculate XOR values and return the missing integer.
  9.     static int findMissingInteger(int[] array){
  10.         int i;
  11.         int XOR1, XOR2;
  12.         XOR1 = array[0];
  13.         XOR2 = 1;
  14.         for(i=1;i<array.length;i++){
  15.             XOR1 ^= array[i];
  16.             XOR2 ^= (i+1);
  17.         }
  18.         XOR2 ^=(i+1);
  19.         return (XOR2 ^ XOR1);
  20.     }
  21.     // Function to read the input and display the output
  22.     public static void main(String[] args) {
  23.         BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  24.         int size;
  25.         System.out.println("Enter the range of the values (starts from 1)");
  26.         try {
  27.             size = Integer.parseInt(br.readLine());
  28.         } catch (Exception e) {
  29.             System.out.println("Invalid Input");
  30.             return;
  31.         }
  32.         int[] array = new int[size-1];
  33.         System.out.println("Enter array elements");
  34.         int i;
  35.         for (i = 0; i < array.length; i++) {
  36.             try {
  37.                 array[i] = Integer.parseInt(br.readLine());
  38.             } catch (Exception e) {
  39.                 System.out.println("An error occurred");
  40.                 return;
  41.             }
  42.         }
  43.         int missing = findMissingInteger(array);
  44.         System.out.println("The missing integer is " + missing);
  45.     }
  46. }
Program Explanation

1. The function findMissingInteger(), initializes the variables XOR1 to array[0] and XOR2 to 1.
2. The loop for(i=1; i<array.length; i++) is used to iterate through the array and store the XOR of its elements in XOR1 and XOR of first n-1 integers in XOR2.
3. The statement XOR2^=(i+1) XOR’s the integer n.
4. The statement (XOR1^XOR2) returns the missing integers.

Time Complexity: O(n) where n is the number of elements in the array.

Runtime Test Cases
🔥 Enroll Now for Free Python Certification - December 2025
 
Case 1 (Simple Test Case):
 
Enter the range of the values (starts from 1)
5
Enter array elements
1
2
4
5
The missing integer is 3
 
Case 2 (Simple Test Case - another example):
 
Enter the range of the values (starts from 1)
8
Enter array elements
8
7
6
5
4
3
2
The missing integer is 1

Sanfoundry Global Education & Learning Series – Java Programs.

advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
I’m Manish - Founder and CTO at Sanfoundry. I’ve been working in tech for over 25 years, with deep focus on Linux kernel, SAN technologies, Advanced C, Full Stack and Scalable website designs.

You can connect with me on LinkedIn, watch my Youtube Masterclasses, or join my Telegram tech discussions.

If you’re in your 20s–40s and exploring new directions in your career, I also offer mentoring. Learn more here.