TheAlgorithms/Java

[FEATURE REQUEST] Sleep Sort Algorithm

pankaj-bind opened this issue · 3 comments

What would you like to Propose?

Sleep sort is a unique sorting algorithm that utilizes sleep functions to achieve sorting. The basic idea behind the algorithm is to assign each element in the list to a separate thread. Each thread then sleeps for an amount of time proportional to the value of the element it is assigned. Once all threads have finished sleeping, the elements are sorted in ascending order based on the time they took to sleep.

Issue details

Algorithm Description: Provide a clear and concise explanation of the Sleep Sort algorithm.
Implementation: Implement the Sleep Sort algorithm in the programming language of your choice.
Testing: Develop test cases to ensure the correctness of the implementation.
Documentation: Document the code and algorithm to facilitate understanding for future developers.

Additional Information

Sleep sort is not suitable for practical use due to its inefficiency and unpredictability. It's mainly used for educational and entertainment purposes.

assign me