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 | 31 |
Tags
- 기초100제
- 리덕스장바구니
- 프로그래머스
- memory
- 공부
- 코드업
- Redux
- 자료구조
- 파이썬
- 일상
- js to ts
- 타입스크립트
- 알고리즘
- 협업
- CPU 스케줄링
- 스프링
- Spring
- Java
- C++
- OS
- 분할메모리할당
- react
- codeup
- 정렬
- 토이프로젝트
- Operating System
- error
- 백준
- web
- react-redux
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