Sollicitatievraag bij LinkedIn

generating a sorted vector from two sorted vectors.

Antwoorden op sollicitatievragen

Anoniem

7 okt 2012

look at merge in mergesort, does exact same thing.

8

Anoniem

22 feb 2012

keep two pointers and compare the two numbers they point to. Move the pointer which points to the smaller or equal number. End loop when two pointers reach the end.

3

Anoniem

6 mrt 2016

Merge sort is the best...many languages have this function inbuilt...else this can also be done manually, assume two vectors A [1,2,3,4] And B[5,6,7,8]...merge them...compare the last value of A and first value of B...in our case 4<5 is true...thus the result...if it is false then move the number up and then compare it with the previous number and so on...