This project is an implementation of an external, p-way balanced merge sort algorithm in Java. It was developed as a requirement for the MATA54 - Data Structures and Algorithms II course at UFBA. The ...
This project implements both sequential and parallel versions of the Merge Sort algorithm in Java, with a focus on performance comparison and proper OOP design. /lab3a/ ├── /src/ │ ├── sorter/ │ │ ├── ...
Abstract: Sorting is one of the fundamental problems in computer science. With the proliferation of multi core processors, parallel algorithms for sorting have become very important. In this study, we ...