Skip to content

Commit cbd3ac6

Browse files
authored
Update README-ko.md
~shell
1 parent 4723e5f commit cbd3ac6

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README-ko.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,19 @@ From [Wikipedia][selection-wiki]: 알고리즘 입력 리스트를 두 부분으
6868

6969
__속성__
7070
* 최악의 성능 O(n^2)
71-
* Best case performance O(n^2)
72-
* Average case performance O(n^2)
71+
* 최고의 성능 O(n^2)
72+
* 평균 O(n^2)
7373

7474
###### View the algorithm in [action][selection-toptal]
7575

76-
### Shell
76+
### Shell(쉘 정렬)
7777
![alt text][shell-image]
7878

79-
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.
79+
From [Wikipedia][shell-wiki]: 쉘 정렬은 멀리 떨어져 있는 항목의 교환을 허용하는 삽입 종류의 일반화이다. 그 아이디어는 모든 n번째 요소가 정렬된 목록을 제공한다는 것을 고려하여 어느 곳에서든지 시작하도록 요소의 목록을 배열하는 것이다. 이러한 목록은 h-sorted로 알려져 있다. 마찬가지로, 각각 개별적으로 정렬된 h 인터리브 목록으로 간주될 수 있다.
8080

81-
__Properties__
82-
* Worst case performance O(nlog2 2n)
83-
* Best case performance O(n log n)
81+
__속성__
82+
* 최악의 성능 O(nlog2 2n)
83+
* 최고의 성능 O(n log n)
8484
* Average case performance depends on gap sequence
8585

8686
###### View the algorithm in [action][shell-toptal]

0 commit comments

Comments
 (0)