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제
- 코드업
- 프로그래머스
- 협업
- react
- 파이썬
- 알고리즘
- codeup
- error
- web
- 토이프로젝트
- OS
- 공부
- memory
- C++
- Java
- Spring
- 자료구조
- 리덕스장바구니
- 스프링
- 일상
- CPU 스케줄링
- react-redux
- 정렬
- Operating System
- js to ts
- 분할메모리할당
- Redux
Archives
- Today
- Total
감자튀김 공장🍟
[python] 삽입 정렬(Insertion sort) 본문
반응형
내용 정리 ➡ https://good-potato.tistory.com/38
코드 정리
#삽입 정렬
def insertion(arr):
n = len(arr)
for i in range(1, n):
j = i
temp = arr[i]
while j > 0 and arr[j-1] > temp:
arr[j] = arr[j - 1]
j -= 1
arr[j] = temp
반응형
'Algorithm > 정렬' 카테고리의 다른 글
[python] 퀵 정렬(Quick sort) (0) | 2022.03.23 |
---|---|
[python] 셸 정렬(Shell sort) (0) | 2022.03.22 |
[python] 선택 정렬(Selection sort) (0) | 2022.03.20 |
[python] 버블 정렬(Bubble sort) (0) | 2022.03.19 |
[C++] 쉘 정렬 (Shell Sort) (0) | 2021.08.27 |
Comments