Current Values
Alter List
Insert/Remove a value to/from the the list
Select your preferred sorting method
Start or stop sorting
More sorting stats
Algorithms Info
Name | Time complexity | Space complexity | Details |
---|---|---|---|
Bubble sort | Best: O(n), Average: O(n^2), Worst: O(n^2) | O(1) | Stable | Exchanges values |
Selection sort | Best: O(n^2), Average: O(n^2), Worst: O(n^2) | O(n) | Not stable | Selects values and puts them into place |
Insertion sort | Best: O(n), Average: O(n^2), Worst: O(n^2) | O(1)) | Stable | Inserts values to the right position |
Merge sort | Best: O(n log n), Average: O(n log n), Worst: O(n log n) | O(n) | Stable | Uses merging |
Quick sort | Best: O(n log n), Average: O(n log n), Worst: O(n^2) | O(log n) | The best, used by most languages as the default sort method | Not stable | Uses partions | In-place |
More controls