Skip to content

jojusuar/parasorter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ParaSorter

Is a command line program created as an Operative Systems assignment, with the purpose of receiving a CSV-formatted string of integers and sort them through a parallel implementation of Merge-Sort and QuickSort, using the POSIX thread library.

The conceptual guidelines for the parallelization are given by this article by Macalester College.

Compilation

From the root folder of the project, execute $ make in a Bash terminal.

Usage

Usage: ./parasorter [option]
    No option:      Prompts user for input.
    -f: <filename>  Reads numbers from specified path.
    -h:             Shows this message.

Author

José Julio Suárez

External credits

Based on Leyxargon's implementation of a linked list in C.