Skip to content

Commit 15e1ae9

Browse files
authored
Update README.md
duplicate description about shell sort and deleted one.
1 parent 3c97292 commit 15e1ae9

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,6 @@ __Properties__
119119
* Average case performance O(log n)
120120
* Worst case space complexity O(1)
121121

122-
### Shell
123-
From [Wikipedia][shell-wiki]: Shellsort is a generalization of insertion sort that allows the exchange of items that are far apart. The idea is to arrange the list of elements so that, starting anywhere, considering every nth element gives a sorted list. Such a list is said to be h-sorted. Equivalently, it can be thought of as h interleaved lists, each individually sorted.
124-
125-
__Properties__
126-
* Worst case performance O(nlog2 2n)
127-
* Best case performance O(n log n)
128-
* Average case performance depends on gap sequence
129-
130122
##### View the algorithm in [action][shell-toptal]
131123

132124
[bubble-toptal]: https://www.toptal.com/developers/sorting-algorithms/bubble-sort

0 commit comments

Comments
 (0)