Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 프로그래머스
- 기초100제
- 타입스크립트
- js to ts
- Redux
- 코드업
- 백준
- codeup
- OS
- 협업
- CPU 스케줄링
- 알고리즘
- react
- Java
- Spring
- react-redux
- 공부
- 분할메모리할당
- 스프링
- Operating System
- web
- error
- 정렬
- C++
- 토이프로젝트
- memory
- 일상
- 파이썬
- 리덕스장바구니
- 자료구조
Archives
- Today
- Total
감자튀김 공장🍟
[python] 셸 정렬(Shell sort) 본문
반응형
내용 정리 ➡ https://good-potato.tistory.com/40
코드 정리
# 쉘 정렬
def shell(arr):
n = len(arr)
h = n // 2
while h > 0:
for i in range(h, n):
j = i - h
tmp = arr[i]
while j >= 0 and arr[j] > tmp:
arr[j + h] = arr[j]
j -= h
arr[j + h] = tmp
h //= 2
반응형
'Algorithm > 정렬' 카테고리의 다른 글
[python] 합병 정렬(Merge sort) (0) | 2022.03.25 |
---|---|
[python] 퀵 정렬(Quick sort) (0) | 2022.03.23 |
[python] 삽입 정렬(Insertion sort) (0) | 2022.03.21 |
[python] 선택 정렬(Selection sort) (0) | 2022.03.20 |
[python] 버블 정렬(Bubble sort) (0) | 2022.03.19 |
Comments