Skip to content

Commit 73836e3

Browse files
authored
Merge pull request TheAlgorithms#101 from chrisjim316/master
Correct markdown (ShellSort)
2 parents f954b37 + cc6814b commit 73836e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ __Properties__
7474
### Shell
7575
![alt text][shell-image]
7676

77-
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 anywherem considereing every nth element gives a sorted list. Such a list is said to be h-sorted. Equivanelty, it can be thought of as h intterleaved lists, each individually sorted.
77+
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.
7878

7979
__Properties__
8080
* Worst case performance O(nlog2 2n)

0 commit comments

Comments
 (0)