Find any one of the multiple repeating elements in read only array
Last Updated : 24 Mar, 2023
Given a read-only array of size ( n+1 ), find one of the multiple repeating elements in the array where the array contains integers only between 1 and n.
A read-only array means that the contents of the array can’t be modified.
Examples:
Input : n = 5 arr[] = {1, 1, 2, 3, 5, 4} Output : One of the numbers repeated in the array is: 1 Input : n = 10 arr[] = {10, 1, 2, 3, 5, 4, 9, 8, 5, 6, 4} Output : One of the numbers repeated in the array is: 4 OR 5
Method 1: Since the size of the array is n+1 and elements range from 1 to n then it is confirmed that there will be at least one repeating element. A simple solution is to create a count array and store counts of all elements. As soon as we encounter an element with a count of more than 1, we return it.
Below is the implementation of the above approach:
C++
#include <bits/stdc++.h> using namespace std; int findRepeatingNumber( const int arr[], int n) { for ( int i = 0; i < n; i++) { int count = 0; for ( int j = 0; j < n; j++) { if (arr[i] == arr[j]) count++; } if (count > 1) return arr[i]; } return -1; } int main() { const int arr[] = { 1, 1, 2, 3, 5, 4 }; int n = 5; cout << "One of the numbers repeated in" " the array is: " << findRepeatingNumber(arr, n) << endl; } |
Java
public class GFG { public static int findRepeatingNumber( int [] arr, int n) { for ( int i = 0 ; i < n; i++) { int count = 0 ; for ( int j = 0 ; j < n; j++) { if (arr[i] == arr[j]) { count++; } } if (count > 1 ) { return arr[i]; } } return - 1 ; } public static void main(String[] args) { final int [] arr = { 1 , 1 , 2 , 3 , 5 , 4 }; int n = 5 ; System.out.print( "One of the numbers repeated in" + " the array is: " ); System.out.print(findRepeatingNumber(arr, n)); System.out.print( "\n" ); } } |
Python3
from math import sqrt def findRepeatingNumber(arr, n): for i in arr: count = 0 ; for j in arr: if i = = j: count = count + 1 if (count> 1 ): return i return - 1 if __name__ = = '__main__' : arr = [ 1 , 1 , 2 , 3 , 5 , 4 ] n = 5 print ( "One of the numbers repeated in the array is:" , findRepeatingNumber(arr, n)) |
C#
using System; public class GFG { public static int findRepeatingNumber( int [] arr, int n) { for ( int i = 0; i < n; i++) { int count = 0; for ( int j = 0; j < n; j++) { if (arr[i] == arr[j]) { count++; } } if (count > 1) { return arr[i]; } } return -1; } public static void Main(String[] args) { int [] arr = { 1, 1, 2, 3, 5, 4 }; int n = 5; Console.Write( "One of the numbers repeated in" + " the array is: " ); Console.Write(findRepeatingNumber(arr, n)); Console.Write( "\n" ); } } |
Javascript
<script> function findRepeatingNumber(arr, n){ for (let i = 0; i < n; i++) { let count = 0; for (let j = 0; j < n; j++) { if (arr[i] == arr[j]) { count++; } } if (count > 1) { return arr[i]; } } return -1; } const arr = [ 1, 1, 2, 3, 5, 4 ]; let n = 5; document.write( "One of the numbers repeated in the array is: " + findRepeatingNumber(arr, n)); </script> |
Output One of the numbers repeated in the array is: 1
Time Complexity: O(n2)
Auxiliary Space: O(1)
A space-optimized solution is to break the given range (from 1 to n) into blocks of size equal to sqrt(n). We maintain the count of elements belonging to each block for every block. Now as the size of an array is (n+1) and blocks are of size sqrt(n), then there will be one such block whose size will be more than sqrt(n). For the block whose count is greater than sqrt(n), we can use hashing for the elements of this block to find which element appears more than once.
Explanation:
The method described above works because of the following two reasons:
- There would always be a block that has a count greater than sqrt(n) because of one extra element. Even when one extra element has been added it will occupy a position in one of the blocks only, making that block to be selected.
- The selected block definitely has a repeating element. Consider that ith block is selected. The size of the block is greater than sqrt(n) (Hence, it is selected) Maximum distinct elements in this block = sqrt(n). Thus, size can be greater than sqrt(n) only if there is a repeating element in range ( i*sqrt(n), (i+1)*sqrt(n) ].
Note: The last block formed may or may not have a range equal to sqrt(n). Thus, checking if this block has a repeating element will be different than other blocks. However, this difficulty can be overcome from the implementation point of view by initializing the selected block with the last block. This is safe because at least one block has to get selected.
Below is the step-by-step algorithm to solve this problem:
- Divide the array into blocks of size sqrt(n).
- Make a count array that stores the count of elements for each block.
- Pick up the block which has a count of more than sqrt(n), setting the last block
as default. - For the elements belonging to the selected block, use the method of hashing(explained in the next step) to find the repeating element in that block.
- We can create a hash array of key-value pairs, where the key is the element in the block and the value is the count of a number of times the given key is appearing. This can be easily implemented using unordered_map in C++ STL.
Below is the implementation of the above idea:
C++
#include <bits/stdc++.h> using namespace std; int findRepeatingNumber( const int arr[], int n) { int sq = sqrt (n); int range = (n / sq) + 1; int count[range] = {0}; for ( int i = 0; i <= n; i++) { count[(arr[i] - 1) / sq]++; } int selected_block = range - 1; for ( int i = 0; i < range - 1; i++) { if (count[i] > sq) { selected_block = i; break ; } } unordered_map< int , int > m; for ( int i = 0; i <= n; i++) { if ( ((selected_block * sq) < arr[i]) && (arr[i] <= ((selected_block + 1) * sq))) { m[arr[i]]++; if (m[arr[i]] > 1) return arr[i]; } } return -1; } int main() { const int arr[] = { 1, 1, 2, 3, 5, 4 }; int n = 5; cout << "One of the numbers repeated in" " the array is: " << findRepeatingNumber(arr, n) << endl; } |
Java
import java.io.*; import java.util.*; class GFG { static int findRepeatingNumber( int [] arr, int n) { int sq = ( int ) Math.sqrt(n); int range = (n / sq) + 1 ; int [] count = new int [range]; for ( int i = 0 ; i <= n; i++) { count[(arr[i] - 1 ) / sq]++; } int selected_block = range - 1 ; for ( int i = 0 ; i < range - 1 ; i++) { if (count[i] > sq) { selected_block = i; break ; } } HashMap<Integer, Integer> m = new HashMap<>(); for ( int i = 0 ; i <= n; i++) { if ( ((selected_block * sq) < arr[i]) && (arr[i] <= ((selected_block + 1 ) * sq))) { m.put(arr[i], 1 ); if (m.get(arr[i]) == 1 ) return arr[i]; } } return - 1 ; } public static void main(String args[]) { int [] arr = { 1 , 1 , 2 , 3 , 5 , 4 }; int n = 5 ; System.out.println( "One of the numbers repeated in the array is: " + findRepeatingNumber(arr, n)); } } |
Python3
from math import sqrt def findRepeatingNumber(arr, n): sq = sqrt(n) range__ = int ((n / sq) + 1 ) count = [ 0 for i in range (range__)] for i in range ( 0 , n + 1 , 1 ): count[ int ((arr[i] - 1 ) / sq)] + = 1 selected_block = range__ - 1 for i in range ( 0 , range__ - 1 , 1 ): if (count[i] > sq): selected_block = i break m = {i: 0 for i in range (n)} for i in range ( 0 , n + 1 , 1 ): if (((selected_block * sq) < arr[i]) and (arr[i] < = ((selected_block + 1 ) * sq))): m[arr[i]] + = 1 if (m[arr[i]] > 1 ): return arr[i] return - 1 if __name__ = = '__main__' : arr = [ 1 , 1 , 2 , 3 , 5 , 4 ] n = 5 print ( "One of the numbers repeated in the array is:" , findRepeatingNumber(arr, n)) |
C#
using System; using System.Collections.Generic; class GFG { static int findRepeatingNumber( int [] arr, int n) { int sq = ( int ) Math.Sqrt(n); int range = (n / sq) + 1; int [] count = new int [range]; for ( int i = 0; i <= n; i++) { count[(arr[i] - 1) / sq]++; } int selected_block = range - 1; for ( int i = 0; i < range - 1; i++) { if (count[i] > sq) { selected_block = i; break ; } } Dictionary< int , int > m = new Dictionary< int , int >(); for ( int i = 0; i <= n; i++) { if ( ((selected_block * sq) < arr[i]) && (arr[i] <= ((selected_block + 1) * sq))) { m.Add(arr[i], 1); if (m[arr[i]] == 1) return arr[i]; } } return -1; } public static void Main(String []args) { int [] arr = { 1, 1, 2, 3, 5, 4 }; int n = 5; Console.WriteLine( "One of the numbers repeated in the array is: " + findRepeatingNumber(arr, n)); } } |
Javascript
<script> function findRepeatingNumber(arr, n) { let sq = Math.sqrt(n); let range = Math.floor(n / sq) + 1; let count = new Array(range).fill(0); for (let i = 0; i <= n; i++) { count[(Math.floor((arr[i] - 1) / sq))]++; } let selected_block = range - 1; for (let i = 0; i < range - 1; i++) { if (count[i] > sq) { selected_block = i; break ; } } let m = new Map(); for (let i = 0; i <= n; i++) { if (((selected_block * sq) < arr[i]) && (arr[i] <= ((selected_block + 1) * sq))) { m[arr[i]]++; if (m.has(arr[i])) { m.set(arr[i], m.get(arr[i]) + 1) } else { m.set(arr[i], 1) } if (m.get(arr[i]) > 1) return arr[i]; } } return -1; } const arr = [1, 1, 2, 3, 5, 4]; let n = 5; document.write( "One of the numbers repeated in" + " the array is: " + findRepeatingNumber(arr, n) + "<br>" ); </script> |
Output One of the numbers repeated in the array is: 1
Time Complexity: O(N)
Auxiliary Space: sqrt(N)
Similar Reads
Find the only non-repeating element in a given array
Given an array A[] consisting of N (1 ? N ? 105) positive integers, the task is to find the only array element with a single occurrence. Note: It is guaranteed that only one such element exists in the array. Examples: Input: A[] = {1, 1, 2, 3, 3}Output: 2Explanation: Distinct array elements are {1,
11 min read
Find the only repeating element in a sorted array of size n
Given a sorted array of n elements containing elements in range from 1 to n-1 i.e. one element occurs twice, the task is to find the repeating element in an array. Examples : Input : arr[] = { 1, 2 , 3 , 4 , 4}Output : 4Input : arr[] = { 1 , 1 , 2 , 3 , 4}Output : 1Brute Force: Traverse the input ar
8 min read
Find the first repeating element in an array of integers
Given an array of integers arr[], The task is to find the index of first repeating element in it i.e. the element that occurs more than once and whose index of the first occurrence is the smallest. Examples: Input: arr[] = {10, 5, 3, 4, 3, 5, 6}Output: 5 Explanation: 5 is the first element that repe
8 min read
Find the two repeating elements in a given array
Given an array arr[] of N+2 elements. All elements of the array are in the range of 1 to N. And all elements occur once except two numbers which occur twice. Find the two repeating numbers. Examples: Input: arr = [4, 2, 4, 5, 2, 3, 1], N = 5Output: 4 2Explanation: The above array has n + 2 = 7 eleme
15+ min read
Minimize removal from Array so that in any pair one element is multiple of other
Given an array arr[] of size N, the task is to count the minimum number of elements required to be removed from the given array such that whenever any pair (arr[i], arr[j]) is picked, where i != j and 0 ⤠i < j < N, either arr[i] is multiple of arr[j] or vice versa. Examples: Input: N = 5, arr
9 min read
Find first non-repeating element in a given Array of integers
Given an array of integers of size N, the task is to find the first non-repeating element in this array. Examples: Input: {-1, 2, -1, 3, 0}Output: 2Explanation: The first number that does not repeat is : 2 Input: {9, 4, 9, 6, 7, 4}Output: 6 Recommended ProblemNon-Repeating ElementSolve Problem Simpl
9 min read
Non-Repeating Elements of a given array using Multithreaded program
Given an array arr[] of size N and an integer T representing the count of threads, the task is to find all non-repeating array elements using multithreading. Examples: Input: arr[] = { 1, 0, 5, 5, 2}, T = 3 Output: 0 1 2 Explanation: The frequency of 0 in the array arr[] is 1. The frequency of 1 in
13 min read
Find sum of non-repeating (distinct) elements in an array
Given an integer array with repeated elements, the task is to find the sum of all distinct elements in the array.Examples: Input : arr[] = {12, 10, 9, 45, 2, 10, 10, 45,10};Output : 78Here we take 12, 10, 9, 45, 2 for sumbecause it's distinct elements Input : arr[] = {1, 10, 9, 4, 2, 10, 10, 45 , 4}
14 min read
Find index of an extra element present in one sorted array
Given two sorted arrays. There is only 1 difference between the arrays. The first array has one element extra added in between. Find the index of the extra element. Examples: Input: {2, 4, 6, 8, 9, 10, 12}; {2, 4, 6, 8, 10, 12}; Output: 4 Explanation: The first array has an extra element 9. The extr
15+ min read
Elements that occurred only once in the array
Given an array arr that has numbers appearing twice or once. The task is to identify numbers that occur only once in the array. Note: Duplicates appear side by side every time. There might be a few numbers that can occur at one time and just assume this is a right rotating array (just say an array c
15+ min read