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
- Python
- 생성형 AI
- GPT
- Docker
- k8s
- 컨설팅
- 메세지큐
- SpringBoot
- fastapi
- 머신러닝
- OpenShift
- 생성형
- 솔루션조사
- fast api
- 쿠버네티스
- jpa
- 컨설턴트
- Machine Learning
- 리트코드
- 도커
- kubernetes
- POD
- LLaMa
- Redis
- vue.js
- 로깅
- LeetCode
- BFS
- 오픈시프트
- vuejs
Archives
- Today
- Total
수 많은 우문은 현답을 만든다
(Easy) 트리 높이 구하기 본문
Question :
The height of a binary tree is the number of edges between the tree's root and its furthest leaf. For example, the following binary tree is of height 2
input : 3 5 2 1 4 6 7
result : 3
참조 : 원문링크
풀이 :
더보기
def height(root):
if root is None:
return -1 //0으로 하고 마지막에 맞춰도 된다.
if root is None:
return -1 //0으로 하고 마지막에 맞춰도 된다.
left_size = height(root.left)
right_size = height(root.right)
return 1 + max(left_size, right_size)
//핵심은 방문시 +1을 높여주는 것
'코딩테스트 > Tree' 카테고리의 다른 글
(Medium) 허프만 코딩 (0) | 2023.11.06 |
---|---|
(Medium) BST 여부 검증 (0) | 2023.10.26 |
(Medium) BST LCA 구하기 (0) | 2023.10.26 |
(Easy) Maximum Depth of Binary Tree (0) | 2023.06.18 |
(Easy) Invert Binary Tree (0) | 2023.06.18 |