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
- C programming
- stream
- Stack
- s
- 알기쉬운 알고리즘
- coding test
- insertion sort
- Graph
- Selection Sorting
- R
- datastructure
- 혼자 공부하는 C언어
- 이것이 자바다
- Algorithm
- 이스케이프 문자
- buffer
- list 컬렉션
- 윤성우의 열혈 자료구조
- 메모리구조
- 윤성우 열혈자료구조
- Serialization
- C 언어 코딩 도장
- JSON
Archives
- Today
- Total
Engineering Note
유클리드 호재법 본문
def gcd(a,b):
if b == 0:
return a
else:
return gcd(b, a % b)
print(gcd(35,14))'Computer Science > Data Structure & Algorithm' 카테고리의 다른 글
| Priority Queue (0) | 2021.07.22 |
|---|---|
| 연결리스트 응용(주문 관리 시스템) (0) | 2021.07.07 |
| 자료구조의 분류 및 리스트의 종류와 차이 (0) | 2021.06.02 |
| 인접리스트 형태로 그래프 표현(vector 활용) (0) | 2021.05.19 |
| Breadth-First-Search (0) | 2021.05.17 |
Comments