Question: Write sort.c program, it will be run from the command line as follows: $ ./sort -s 3 -i numbers.txt -o sorted.txt $ Algorithm: Merge sort,

Write sort.c program, it will be run from the command line as follows: $ ./sort -s 3 -i numbers.txt -o sorted.txt $ Algorithm: Merge sort, #integers: 1024, elapsed time: 0s 333ms sort: name of your program (executable file name)

-s 3: sorting algorithm to use (see below) -i numbers.txt: input text file, to be sorted by the program -o sorted.txt:output text file, sorted numbers are saved to this file Sorting algorithms : 0: Bubble sort 1: Insertion sort 2: Selection sort 3: Merge sort 4: Heapsort 5: Quicksort You should implement these sorting algorithms in your code; you are not allowed to use the sorting algorithms in any library.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!