I saw a interview question as follows: Give an unsorted array of integers A and and an integer I, find out if any two members of A add up to I.
any clues?
time complexity should be less
|
I saw a interview question as follows: Give an unsorted array of integers A and and an integer I, find out if any two members of A add up to I. any clues? time complexity should be less |
||||
|
|
|
If you have the range which the integers are within, you can use a counting sort-like solution where you scan over the array and count an array up. Ex you have the integers
And you create an array like this:
which (in Java,C# etc.) are suited for counting integers between 0 and 6.
This will give you the array
Overall this algorithm gives you |
|||
|
|
|
Insert the elements into hashtable. While inserting Otherwise, sort the array ascending (from index 0 to n-1). Have two pointers, one at max and one at min (call them M and m respectively).
|
|||||||||||||||
|
This is If
|
|||||||||||
|
|
For example, loop and add possible number to set or hash and if found, just return it.
|
|||
|
|
If the array is sorted there is a solution in O(n) time complexity. Suppose are array is
And our
Same thing explained in detail here. Seems like an Amazon interview Question http://inder-gnu.blogspot.com/2007/10/find-two-nos-in-array-whose-sum-x.html |
|||
|
|
|||
|
|
|
This might be possible in the following way: Before putting the elements into the hashmap, you can check if the element is greater than the required sum. If it is, you can simply skip that element, else you can proceed with putting it into the hashmap. Its a slight improvement on your algorithm, although the overall time still remains the same. |
||||
|
|
|
for hashmap |
|||
|
|
|
||||
|
|
|
PERL implementation to detect if a sorted array contains two integer that sum up to Number
|
|||
|
|
|
This can be solved using the UNION-FIND algorithm, which can check in constant time whether an element is into a set. So, the algorithm would be so :
FIND and UNION are constant, O(1). |
|||
|
|
|
here is a O(n) solution in java using O(n) extra space. This uses hashSet to implement it |
|||
|
|
|
Here is a solution witch takes into account duplicate entries. It is written in javascript and assumes array is sorted. The solution runs in O(n) time and does not use any extra memory aside from variable. Choose a sorting algorithm of choice. (radix O(kn)!) and then run the array through this baby.
I solved this during an interview for a large corporation. They took it but not me. So here it is for everyone. Start at both side of the array and slowly work your way inwards making sure to count duplicates if they exist. It only counts pairs but can be reworked to
Enjoy and don't forget to bump if its the best solution! |
|||
|
|