Question: Sorting is useful as the first step in many different tasks. The most common task is to make finding things easier, but there are other

Sorting is useful as the first step in many different tasks. The most common task is to make finding
things easier, but there are other uses as well. In this case, it will make it easier to determine which
pair or pairs of elements have the smallest absolute difference between them.
Example
arr=[5,2,3,4,1]
Sorted, arr ?'=[1,2,3,4,5]. Several pairs have the minimum difference of 1 :
(1,2),(2,3),(3,4),(4,5). Return the array 1,2,2,3,3,4,4,5.
Note
As shown in the example, pairs may overlap.
Given a list of unsorted integers, arr , find the pair of elements that have the smallest absolute
difference between them. If there are multiple pairs, find them all.
Function Description
Complete the closestNumbers function in the editor below.
closestNumbers has the following parameter(s):
int arr[n]: an array of integers
Returns
int[]: an array of integers as described
Input Format
The first line contains a single integer n, the length of arr.
The second line contains n space-separated integers, arr[i].
Constraints
2n200000
-107arr[i]107
All a[i] are unique in arr.
Output Format
Explanation 0
(30)-(-20)=50, which is the smallest difference.
Explanation 1
(-470)-(-520)=30-(-20)=50, which is the smallest difference.
Explanation 2
Here, the minimum difference is 1. Valid pairs are (2,3),(3,4), and (4,5).
 Sorting is useful as the first step in many different tasks.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!