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