sort two arrays with merge sort: running time n log(n)
compare all elements one by one in two arrays: running time n
Total running time is n log(n)
No extra memory is needed.
How about using the following approach?
sort one arrays in merge : running time n log(n).
do binary search for all member of the other arrays based on the sorted array.
No extra memory is needed.
sort two arrays with merge sort: running time n log(n)
compare all elements one by one in two arrays: running time n
Total running time is n log(n)
No extra memory is needed.