Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is efficient and stable external sort algorithm implementation (written in c)?

What is efficient and stable external sort algorithm implementation (written in c)?

like image 763
Mickey Shine Avatar asked Nov 05 '22 05:11

Mickey Shine


1 Answers

Look at implementing an external merge-sort. You can see sample C++ (other than the example's use of file streams essentially C) along with information on the algorithm here.

like image 144
borrible Avatar answered Nov 10 '22 16:11

borrible