InterviewSolution
Saved Bookmarks
| 1. |
How Fast Can Two Sorted Lists Of Size N Each Be Merged Into One Using P Processors? |
|
Answer» O(n/p) TIME USING OPTIMAL multi-way MERGE. O(n/p) time using optimal multi-way merge. |
|