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
- Host: GitHub
- URL: https://github.com/quantamhd/concurrentsorting
- Owner: QuantamHD
- Created: 2016-10-07T00:43:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-10T05:49:51.000Z (over 9 years ago)
- Last Synced: 2025-01-30T05:13:13.559Z (over 1 year ago)
- Language: C
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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