Find the minimum distance between two numbers
Given an unsorted array arr[] and two numbers x and y, find the minimum distance between x and y in arr[]. The array might also contain duplicates. You may assume that both x and y are different and present in arr[].
Examples:
Input: arr[] = {1, 2}, x = 1, y = 2
Output: Minimum distance between 1
and 2 is 1.
Explanation: 1 is at index 0 and 2 is at
index 1, so the distance is 1
Input: arr[] = {3, 4, 5}, x = 3, y = 5
Output: Minimum distance between 3
and 5 is 2.
Explanation:3 is at index 0 and 5 is at
index 2, so the distance is 2
Input:
arr[] = {3, 5, 4, 2, 6, 5, 6, 6, 5, 4, 8, 3},
x = 3, y = 6
Output: Minimum distance between 3
and 6 is 4.
Explanation:3 is at index 0 and 6 is at
index 5, so the distance is 4
Input: arr[] = {2, 5, 3, 5, 4, 4, 2, 3},
x = 3, y = 2
Output: Minimum distance between 3
and 2 is 1.
Explanation:3 is at index 7 and 2 is at
index 6, so the distance is 1
Method 1:
- Approach: The task is to find the distance between two given numbers, So find the distance between any two elements using nested loops. The outer loop for selecting the first element (x) and the inner loop for traversing the array in search for the other element (y) and taking the minimum distance between them.
- Algorithm:
- Create a variable m = INT_MAX
- Run a nested loop, the outer loop runs from start to end (loop counter i), the inner loop runs from i+1 to end (loop counter j).
- If the ith element is x and jth element is y or vice versa, update m as m = min(m,j-i)
- Print the value of m as minimum distance
-
Implementation:
C++
// C++ program to Find the minimum// distance between two numbers#include <bits/stdc++.h>usingnamespacestd;intminDist(intarr[],intn,intx,inty){inti, j;intmin_dist = INT_MAX;for(i = 0; i < n; i++){for(j = i+1; j < n; j++){if( (x == arr[i] && y == arr[j] ||y == arr[i] && x == arr[j]) &&min_dist >abs(i-j)){min_dist =abs(i-j);}}}returnmin_dist;}/* Driver code */intmain(){intarr[] = {3, 5, 4, 2, 6, 5, 6, 6, 5, 4, 8, 3};intn =sizeof(arr)/sizeof(arr[0]);intx = 3;inty = 6;cout <<"Minimum distance between "<< x <<" and "<< y <<" is "<<minDist(arr, n, x, y) << endl;}// This code is contributed by Shivi_AggarwalC
// C program to Find the minimum// distance between two numbers#include <stdio.h>#include <stdlib.h> // for abs()#include <limits.h> // for INT_MAXintminDist(intarr[],intn,intx,inty){inti, j;intmin_dist = INT_MAX;for(i = 0; i < n; i++){for(j = i+1; j < n; j++){if( (x == arr[i] && y == arr[j] ||y == arr[i] && x == arr[j]) && min_dist >abs(i-j)){min_dist =abs(i-j);}}}returnmin_dist;}/* Driver program to test above function */intmain(){intarr[] = {3, 5, 4, 2, 6, 5, 6, 6, 5, 4, 8, 3};intn =sizeof(arr)/sizeof(arr[0]);intx = 3;inty = 6;printf("Minimum distance between %d and %d is %d\n", x, y,minDist(arr, n, x, y));return0;}Java
// Java Program to Find the minimum// distance between two numbersclassMinimumDistance{intminDist(intarr[],intn,intx,inty){inti, j;intmin_dist = Integer.MAX_VALUE;for(i =0; i < n; i++){for(j = i +1; j < n; j++){if((x == arr[i] && y == arr[j]|| y == arr[i] && x == arr[j])&& min_dist > Math.abs(i - j))min_dist = Math.abs(i - j);}}returnmin_dist;}publicstaticvoidmain(String[] args){MinimumDistance min =newMinimumDistance();intarr[] = {3,5,4,2,6,5,6,6,5,4,8,3};intn = arr.length;intx =3;inty =6;System.out.println("Minimum distance between "+ x +" and "+ y+" is "+ min.minDist(arr, n, x, y));}}Python3
# Python3 code to Find the minimum# distance between two numbersdefminDist(arr, n, x, y):min_dist=99999999foriinrange(n):forjinrange(i+1, n):if(x==arr[i]andy==arr[j]ory==arr[i]andx==arr[j])andmin_dist >abs(i-j):min_dist=abs(i-j)returnmin_dist# Driver codearr=[3,5,4,2,6,5,6,6,5,4,8,3]n=len(arr)x=3y=6print("Minimum distance between ",x," and ",y,"is",minDist(arr, n, x, y))# This code is contributed by "Abhishek Sharma 44"C#
// C# code to Find the minimum// distance between two numbersusingSystem;classGFG {staticintminDist(int[]arr,intn,intx,inty){inti, j;intmin_dist =int.MaxValue;for(i = 0; i < n; i++){for(j = i + 1; j < n; j++){if((x == arr[i] &&y == arr[j] ||y == arr[i] &&x == arr[j])&& min_dist >Math.Abs(i - j))min_dist =Math.Abs(i - j);}}returnmin_dist;}// Driver functionpublicstaticvoidMain(){int[]arr = {3, 5, 4, 2, 6,5, 6, 6, 5, 4, 8, 3};intn = arr.Length;intx = 3;inty = 6;Console.WriteLine("Minimum "+"distance between "+ x +" and "+ y +" is "+ minDist(arr, n, x, y));}}// This code is contributed by Sam007PHP
<?php// PHP program to Find the minimum// distance between two numbersfunctionminDist($arr,$n,$x,$y){$i;$j;$min_dist= PHP_INT_MAX;for($i= 0;$i<$n;$i++){for($j=$i+ 1;$j<$n;$j++){if( ($x==$arr[$i]and$y==$arr[$j]or$y==$arr[$i]and$x==$arr[$j])and$min_dist>abs($i-$j)){$min_dist=abs($i-$j);}}}return$min_dist;}// Driver Code$arr=array(3, 5, 4, 2, 6, 5, 6, 6, 5, 4, 8, 3);$n=count($arr);$x= 3;$y= 6;echo"Minimum distance between ",$x," and ",$y," is ";echominDist($arr,$n,$x,$y);// This code is contributed by anuj_67.?>
Output:
Minimum distance between 3 and 6 is 4
-
Complexity Analysis:
- Time Complexity: O(n^2), Nested loop is used to traverse the array.
- Space Complexity: O(1), no extra space is required.
Method 2:
- Approach: So the basic approach is to check only consecutive pairs of x and y. For every element x or y, check the index of the previous occurrence of x or y and if the previous occurring element is not similar to current element update the minimum distance. But a question arises what if an x is preceded by another x and that is preceded by a y, then how to get the minimum distance between pairs. By analyzing closely it can be seen that every x followed by a y or vice versa can only be the closest pair (minimum distance) so ignore all other pairs.
-
Algorithm:
- Create a variable prev=-1 and m= INT_MAX
- Traverse through the array from start to end.
- If the current element is x or y, prev is not equal to -1 and array[prev] is not equal to current element then update m = max(current_index – prev, m), i.e. find the distance between consecutive pairs and update m with it.
- print the value of m
-
Thanks to wgpshashank for suggesting this approach.

Implementation.
C++
// C++ implementation of above approach#include <bits/stdc++.h>usingnamespacestd;intminDist(intarr[],intn,intx,inty){//previous index and min distanceintp = -1, min_dist = INT_MAX;for(inti=0 ; i<n ; i++){if(arr[i]==x || arr[i]==y){//we will check if p is not equal to -1 and//If the element at current index matches with//the element at index p , If yes then update//the minimum distance if neededif( p != -1 && arr[i] != arr[p])min_dist = min(min_dist , i-p);//update the previos indexp=i;}}//If distance is equal to int maxif(min_dist==INT_MAX)return-1;returnmin_dist;}/* Driver code */intmain(){intarr[] = {3, 5, 4, 2, 6, 3, 0, 0, 5, 4, 8, 3};intn =sizeof(arr) /sizeof(arr[0]);intx = 3;inty = 6;cout <<"Minimum distance between "<< x <<" and "<< y <<" is "<<minDist(arr, n, x, y) << endl;return0;}// This code is contributed by Mukul singh.C
#include <stdio.h>#include <limits.h> // For INT_MAX//returns minimum of two numbersintmin(inta ,intb){if(a < b)returna;returnb;}intminDist(intarr[],intn,intx,inty){//previous index and min distanceinti=0,p=-1, min_dist=INT_MAX;for(i=0 ; i<n ; i++){if(arr[i] ==x || arr[i] == y){//we will check if p is not equal to -1 and//If the element at current index matches with//the element at index p , If yes then update//the minimum distance if neededif(p != -1 && arr[i] != arr[p])min_dist = min(min_dist,i-p);//update the previos indexp=i;}}//If distance is equal to int maxif(min_dist==INT_MAX)return-1;returnmin_dist;}/* Driver program to test above function */intmain(){intarr[] ={3, 5, 4, 2, 6, 3, 0, 0, 5, 4, 8, 3};intn =sizeof(arr)/sizeof(arr[0]);intx = 3;inty = 6;printf("Minimum distance between %d and %d is %d\n", x, y,minDist(arr, n, x, y));return0;}Java
classMinimumDistance{intminDist(intarr[],intn,intx,inty){//previous index and min distanceinti=0,p=-1, min_dist=Integer.MAX_VALUE;for(i=0; i<n ; i++){if(arr[i] ==x || arr[i] == y){//we will check if p is not equal to -1 and//If the element at current index matches with//the element at index p , If yes then update//the minimum distance if neededif(p != -1&& arr[i] != arr[p])min_dist = Math.min(min_dist,i-p);//update the previous indexp=i;}}//If distance is equal to int maxif(min_dist==Integer.MAX_VALUE)return-1;returnmin_dist;}/* Driver program to test above functions */publicstaticvoidmain(String[] args) {MinimumDistance min =newMinimumDistance();intarr[] = {3,5,4,2,6,3,0,0,5,4,8,3};intn = arr.length;intx =3;inty =6;System.out.println("Minimum distance between "+ x +" and "+ y+" is "+ min.minDist(arr, n, x, y));}}Python3
importsysdefminDist(arr, n, x, y):#previous index and min distancei=0p=-1min_dist=sys.maxsize;foriinrange(n):if(arr[i]==xorarr[i]==y):#we will check if p is not equal to -1 and#If the element at current index matches with#the element at index p , If yes then update#the minimum distance if neededif(p !=-1andarr[i] !=arr[p]):min_dist=min(min_dist,i-p)#update the previos indexp=i#If distance is equal to int maxif(min_dist==sys.maxsize):return-1returnmin_dist# Driver program to test above function */arr=[3,5,4,2,6,3,0,0,5,4,8,3]n=len(arr)x=3y=6print("Minimum distance between %d and %d is %d\n"%( x, y,minDist(arr, n, x, y)));# This code is contributed by Shreyanshi Arun.C#
// C# program to Find the minimum// distance between two numbersusingSystem;classMinimumDistance {staticintminDist(int[]arr,intn,intx,inty){//previous index and min distanceinti=0,p=-1, min_dist=int.MaxValue;for(i=0 ; i<n ; i++){if(arr[i] ==x || arr[i] == y){//we will check if p is not equal to -1 and//If the element at current index matches with//the element at index p , If yes then update//the minimum distance if neededif(p != -1 && arr[i] != arr[p])min_dist = Math.Min(min_dist,i-p);//update the previos indexp=i;}}//If distance is equal to int maxif(min_dist==int.MaxValue)return-1;returnmin_dist;}// Driver CodepublicstaticvoidMain(){int[]arr = {3, 5, 4, 2, 6, 3,0, 0, 5, 4, 8, 3};intn = arr.Length;intx = 3;inty = 6;Console.WriteLine("Minimum distance between "+ x +" and "+ y+" is "+ minDist(arr, n, x, y));}}// This code is contributed by anuj_67.PHP
<?php// PHP program to Find the minimum// distance between two numbersfunctionminDist($arr,$n,$x,$y){//previous index and min distance$i=0;$p=-1;$min_dist=PHP_INT_MAX;for($i=0 ;$i<$n;$i++){if($arr[$i] ==$x||$arr[$i] ==$y){//we will check if p is not equal to -1 and//If the element at current index matches with//the element at index p , If yes then update//the minimum distance if neededif($p!= -1 &&$arr[$i] !=$arr[$p])$min_dist= min($min_dist,$i-$p);//update the previous index$p=$i;}}//If distance is equal to int maxif($min_dist==PHP_INT_MAX)return-1;return$min_dist;}/* Driver program to test above function */$arr=array(3, 5, 4, 2, 6, 3, 0, 0, 5,4, 8, 3);$n=count($arr);$x= 3;$y= 6;echo"Minimum distance between $x and ","$y is ", minDist($arr,$n,$x,$y);// This code is contributed by anuj_67.?>
Output:Minimum distance between 3 and 6 is 1
-
Complexity Analysis:
- Time Complexity: O(n).
Only one traversal of the array is needed. - Space Complexity: O(1).
As no extra space is required.
- Time Complexity: O(n).
Please write comments if you find the above codes/algorithms incorrect, or find other ways to solve the same problem.
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.

