Home » Program to print the duplicate elements of an array

Program to print the duplicate elements of an array

by Online Tutorials Library

Q. Program to print the duplicate elements of an array.

Explanation

In this program, we need to print the duplicate elements present in the array. This can be done through two loops. The first loop will select an element and the second loop will iteration through the array by comparing the selected element with other elements. If a match is found, print the duplicate element.

Program to print the duplicate elements of an array

In the above array, the first duplicate will be found at the index 4 which is the duplicate of the element (2) present at index 1. So, duplicate elements in the above array are 2, 3 and 8.

Algorithm

  1. Declare and initialize an array.
  2. Duplicate elements can be found using two loops. The outer loop will iterate through the array from 0 to length of the array. The outer loop will select an element. The inner loop will be used to compare the selected element with the rest of the elements of the array.
  3. If a match is found which means the duplicate element is found then, display the element.

Solution

Python

Output:

Duplicate elements in given array:   2  3  8  

C

Output:

Duplicate elements in given array:   2  3  8  

JAVA

Output:

Duplicate elements in given array:   2  3  8  

C#

Output:

Duplicate elements in given array:   2  3  8  

PHP

Output:

Duplicate elements in given array:   2  3  8  

Next Topic#

You may also like