Vanshikapandey30 / Hacktoberfest2024

It's time to contribute to HacktoberFest 2024 :)
https://hacktoberfest.com
112 stars 508 forks source link

Quick Sort Implementation in Java #156

Open skanarul8002 opened 1 week ago

skanarul8002 commented 1 week ago

This implementation of Quick Sort in Java uses the Divide and Conquer approach to sort an array of integers in O(n log n) average time complexity. It first partitions the array around a pivot and then recursively sorts the subarrays.

Please assign me this issue and add the hacktoberfest label.

souradipdev commented 2 days ago

Are you still working on this issue?