• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar
  • Skip to secondary sidebar

GoHired

Interview Questions asked in Google, Microsoft, Amazon

Join WeekEnd Online Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

  • Home
  • Best Java Books
  • Algorithm
  • Internship
  • Certificates
  • About Us
  • Contact Us
  • Privacy Policy
  • Array
  • Stack
  • Queue
  • LinkedList
  • DP
  • Strings
  • Tree
  • Mathametical
  • Puzzles
  • Graph

Given a sorted array and a number x, find the pair in array whose sum is closest to x

November 17, 2014 by Dhaval Dave

Given a sorted array and a number x, find a pair in array whose sum is closest to x.

Examples:

Input: arr[] = {10, 22, 28, 29, 32, 40}, x = 54
Output: 22 and 32

A simple solution is to consider every pair and keep track of closest pair (absolute difference between pair sum and x is minimum). Finally print the closest pair. Time complexity of this solution is O(n2)

An efficient solution can find the pair in O(n) time. The idea is similar to method 2 of this post. Following is detailed algorithm.

#include <iostream>
#include <climits>
#include <cstdlib>
using namespace std;

// Prints the pair with sum cloest to x
void printClosest(int arr[], int n, int x)
{
    int res_l, res_r;  
    int l = 0, r = n-1, diff = INT_MAX;
    while (r > l)
    {
       if (abs(arr[l] + arr[r] - x) < diff)
       {
           res_l = l;
           res_r = r;
           diff = abs(arr[l] + arr[r] - x);
       }
       if (arr[l] + arr[r] > x)
           r--;
       else
           l++;
    }
    cout <<" The closest pair is " << arr[res_l] << " and " << arr[res_r];
}

int main()
{
    int arr[] =  {10, 22, 28, 29, 32, 40}, x = 54;
    int n = sizeof(arr)/sizeof(arr[0]);
    printClosest(arr, n, x);
    return 0;
}

See Running code at http://ideone.com/q3F4OQ

Similar Articles

Filed Under: Adobe Interview Questions, Amazon Interview Question, Flipkart Interview Questions, Interview Questions, problem Tagged With: Array

Reader Interactions

Primary Sidebar

Join WeekEnd Online/Offline Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

Join WeekEnd Online/Offline Batch from 4-April-2020

WhatsApp us

Secondary Sidebar

Custom Search

  • How I cracked AMAZON
  • LeetCode
  • Adobe
  • Amazon
  • Facebook
  • Microsoft
  • Hacker Earth
  • CSE Interview

Top Rated Questions

Trapping Rain Water

In Given LinkedList Divide LL in N Sub parts and delete first K nodes of each part

strtok()

Given array of 0’s and 1’s. All 0’s are coming first followed by 1’s. find the position of first 1

Print all nodes that are at distance k from a leaf node

Practo Hiring Experience

Cisco Hiring Event 21st – 22nd Feb 2015

Find Nearest Minimum number in left side in O(n)

Find two non repeating elements in an array of repeating elements

Difference between a LinkedList and a Binary Search Tree BST

Find if two rectangles overlap

Find shortest distances between every pair of vertices ( Dynamic Programming Floyd Warshall Algorithm)

Leetcode: Merge Intervals

Stock Buy Sell to Maximize Profit

Maximum difference between two elements s.t larger element appears after the smaller number

Find min element in Sorted Rotated Array (Without Duplicates)

Reverse a Linked List in groups of given size

Maximum size of square sub matrix with all 1’s in a binary matrix

LeetCode: Binary Tree Maximum Path Sum

Diagonal Traversal of Binary Tree

Introduction To Number Theory ( Part 1 )

Python String and numbers

Memory Efficient LinkedList

Linked List V/S Binary Search Tree

ADOBE Aptitude C Language Test

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Client Server C program

Print Power Set of a Set

Binary Tree Isomorphic to each other

Flipkart Set 1 On Campus with Answers

Copyright © 2026 · Genesis Framework · WordPress · Log in