/cpp-multithreading

An example implementation of a multithreaded sorting program in C language that divides a list of integers into two smaller lists of equal size and sorts them using quicksort algorithm. The program uses two sorting threads and a merging thread to merge the two sublists into a single sorted list.

Primary LanguageC++

cpp-multithreading

Contains the example implementation of a multithreaded programs in C/C++ languages.