An open API service indexing awesome lists of open source software.

https://github.com/quantamhd/concurrentsorting

A C program that allows you to input a file of unsorted integers and then get an output file of sorted integers
https://github.com/quantamhd/concurrentsorting

Last synced: about 1 year ago
JSON representation

A C program that allows you to input a file of unsorted integers and then get an output file of sorted integers

Awesome Lists containing this project

README

          

# ConcurrentSorting
A C program that allows you to input a file of unsorted integers and then get an output file of sorted integers

This C program uses pthreads to complete the realativly simple task of sorting and merging two lists of integers
with selection sort and then combining those results with a merge function