-
Notifications
You must be signed in to change notification settings - Fork 312
Open
Description
Description of the problem
Timsort is a hybrid stable sorting algorithm, derived from merge sort and insertion sort, designed to perform well on many kinds of real-world data. It is already there in Python so a parallel version of the same algorithm should be added.
Example of the problem
This sorting algorithm is implemented in python by default as sort() and sorted() methods
References/Other comments
Metadata
Metadata
Assignees
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
czgdp1807 commentedon Jan 21, 2021
This type of sort is already provided by python internally. Though for educational purposes can be added but not very important.
dillu9878 commentedon Feb 18, 2021
I would like to contribute code for timsort under gssoc'21.
sakshi2707 commentedon Mar 8, 2021
Hey, I'm a GSSoC`21 participant and want to contribute to this . can you please assign me this issue?
Smit-create commentedon Mar 13, 2021
You are free to work on the issue and raise a PR. We generally don't assign issues.
implemented timsort
[-]Implement Timsort[/-][+]Implement Parallel Timsort[/+]