Prem-Kumar-Dev / hacktoberfest2024-project

Welcome to the Hacktoberfest 2024 beginner coding problems repository! This project is designed for those who want to contribute to open-source while solving basic coding challenges. Whether you are a first-time contributor or looking to practice programming, you're in the right place.
MIT License
8 stars 77 forks source link

Added Quick Sort in Java #60

Closed Krupakar-Reddy-S closed 1 month ago

Krupakar-Reddy-S commented 1 month ago

Added the Quick Sort algorithm implementation to the project. Quick Sort is an efficient, divide-and-conquer algorithm used to sort an array by selecting a pivot element and partitioning the array into elements less than and greater than the pivot. The algorithm recursively sorts the subarrays to achieve the final sorted order.