/sorting_multithreading_os_project

Java Application for comparison of Sorting Algorithms(Merge and Quick) performance using Multithreading.Two programs have been used to bench mark the sorting .One has been developed using simple thread while other has been developed using Java Concurrent Framework(Fork Join).The Fork Join process run faster than simple thread and sorts 2 ^32 elements in 10 seconds.

Primary LanguageJava

OS Multithreading Sorting Project

Benchmarking Sorting Algorithms (Merge/Quick Sort) Performance in a Multithreading Environment Using Two Java Programs

We have used two programs to benchmark sorting performance: Simple Thread and Fork Join Pool. The Fork Join Pool process runs faster than the Simple Thread, sorting 2^32 elements in just 10 seconds.