Hello,

Sign up to join our community!

Welcome Back,

Please sign in to your account!

Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Quantaily Latest Questions

  • 0
Michael

Data Sort

What approach would you use to sort 100 GB of data using only 1 GB of memory?

Related Questions

You must login to add an answer.

1 Him Answer

  1. Concise Answer: Implement an external merge sort.
    Detailed Explanation: Divide the data into 1 GB chunks and sort each chunk in memory. Then perform a k-way merge on the sorted chunks, reading and merging chunks into larger sorted segments until the full dataset is sorted.