Answer the question
In order to leave comments, you need to log in
Is it possible to sort a file on several computers at the same time?
There is a huge file. Sorting on one computer takes about a day.
Are there ways to parallelize this sorting across multiple computers?
Answer the question
In order to leave comments, you need to log in
MergeSort. Split the file into several, sort each part separately, and then merge. The complexity of the merge will be O(n), where n is the length of the original array.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question