BST의 최하위 공통 조상
'BST의 최하위 공통 조상' 문제에 대한 자세한 가이드 및 Python 구현입니다.
1. 배우다
'BST의 가장 낮은 공통 조상' 문제는 트리 섹션의 핵심 과제입니다.
이 구현은 Python의 쉬운 수준 논리에 중점을 둡니다.
우리는 제공되는 솔루션에서 기술적 정확성과 코드 가독성을 최우선으로 생각합니다.
2. Real-World Applications
3. Visual Intuition
BST의 최하위 공통 조상에 대한 논리 흐름 시각화.
4. Prerequisites
5. Step-by-Step Thinking
1. Understand the problem
BST의 최하위 공통 조상에 대한 문제 설명을 주의 깊게 읽으십시오.
2. Formulate brute force
간단한 반복 솔루션 초안을 작성합니다.
3. Identify inefficiency
중복 계산을 찾으십시오.
4. Optimize search path
해싱이나 정렬을 사용하여 프로세스 속도를 높입니다.
5. Final Implementation
생산 표준에 맞게 코드를 정리합니다.
문제 설명
BST(이진 검색 트리)가 주어지면 BST에서 주어진 두 노드 중 가장 낮은 공통 조상(LCA) 노드를 찾습니다.
LCA의 정의에 따르면: "최하위 공통 조상은 두 노드 p와 q 사이에 p와 q를 모두 자손으로 갖는 T의 가장 낮은 노드로 정의됩니다(노드가 자체의 자손이 되도록 허용합니다)."
BST는 레벨 순서 목록으로 표시됩니다. LCA 노드의 값을 반환하는 lowestCommonAncestor(root: list, p: int, q: int) -> int 함수를 구현합니다.
- •The number of nodes in the tree is in the range [2, 100000]
- •-1000000000 <= Node.val <= 1000000000
- •All Node.val are unique
- •p != q
- •p and q will exist in the BST
예
[6,2,8,0,4,7,9,None,None,3,5], 2, 8
6
The LCA of nodes 2 and 8 is 6, which is the root.
[6,2,8,0,4,7,9,None,None,3,5], 2, 4
2
The LCA of nodes 2 and 4 is 2, since a node can be a descendant of itself.
[2,1], 2, 1
2
The LCA of nodes 2 and 1 is 2.
Need a Hint?
Edge Cases to Watch
- 빈 입력 구조
- 단일 요소 입력
- 큰 수치 범위
해결할 준비가 되셨나요?
Open the problem in PyRun's browser-based Python editor. Your code runs fully offline — no server required.
인터뷰 통찰력 및 변형
복잡성 분석 분석
왜 시간인가?: Directly evaluates all possibilities.
왜 우주인가?: Uses standard local memory.
왜 시간인가?: Optimized paths reduce total operations.
왜 우주인가?: May trade memory for speed.
최적화된 솔루션 Python 코드
최적화된 솔루션 Python 코드
def lowest_common_ancestor_opt(root, p, q):
if isinstance(root, list):
r = build_tree(root)
val_p = p[0] if isinstance(p, list) else p
val_q = q[0] if isinstance(q, list) else q
def find_node(node, val):
if not node: return None
if node.val == val: return node
return find_node(node.left, val) or find_node(node.right, val)
node_p = find_node(r, val_p) or TreeNode(val_p)
node_q = find_node(r, val_q) or TreeNode(val_q)
res = lowest_common_ancestor_opt_helper(r, node_p, node_q)
return res.val if res else None
return lowest_common_ancestor_opt_helper(root, p, q)
def lowest_common_ancestor_opt_helper(root: TreeNode, p: TreeNode, q: TreeNode) -> TreeNode:
curr = root
while curr:
if p.val > curr.val and q.val > curr.val:
curr = curr.right
elif p.val < curr.val and q.val < curr.val:
curr = curr.left
else:
return curr무차별 대입 코드(스포일러 보호)
무차별 대입 코드(스포일러 보호)
def lowest_common_ancestor_brute(root, p, q):
if isinstance(root, list):
r = build_tree(root)
val_p = p[0] if isinstance(p, list) else p
val_q = q[0] if isinstance(q, list) else q
def find_node(node, val):
if not node: return None
if node.val == val: return node
return find_node(node.left, val) or find_node(node.right, val)
node_p = find_node(r, val_p) or TreeNode(val_p)
node_q = find_node(r, val_q) or TreeNode(val_q)
res = lowest_common_ancestor_brute_helper(r, node_p, node_q)
return res.val if res else None
return lowest_common_ancestor_brute_helper(root, p, q)
def lowest_common_ancestor_brute_helper(root: TreeNode, p: TreeNode, q: TreeNode) -> TreeNode:
if not root or root == p or root == q:
return root
left = lowest_common_ancestor_brute_helper(root.left, p, q)
right = lowest_common_ancestor_brute_helper(root.right, p, q)
if left and right:
return root
return left or rightAlgorithm Pattern Checklist
When dealing with Trees data patterns.
- Are constraints clear?
- Is there a linear or logarithmic optimization possible?
Key Revision Notes
표준 트리 문제 속성이 적용됩니다.
관련 질문
PyRun is built and maintained by an independent solo developer. If this helped your interview prep, consider buying a coffee!
권장 Python 리소스
관련 대화형 튜토리얼, 치트 시트, 코드 비교를 통해 지식을 확장하세요.
Python 루프
Python 루프를 사용하여 데이터를 반복하는 방법을 알아보세요. 대화형 예제를 통해 for 루프, while 루프, 중단, 계속 및 루프 모범 사례를 마스터하세요.
Python에서 목록의 길이를 찾는 방법
len() 함수를 사용하여 Python에서 목록의 길이를 찾는 방법을 알아보세요. O(1) 시간 복잡도와 확인 횟수를 이해합니다.
Python 문자열 메서드 치트 시트
Python 문자열 조작에 대한 완전한 참조 가이드입니다. 문자열 속성의 서식 지정, 검색, 분할, 바꾸기 및 확인을 마스터합니다.
Python 대 JavaScript: 어떤 프로그래밍 언어가 가장 좋나요?
Python과 JavaScript를 포괄적으로 비교합니다. 구문 차이점, 성능, 사용 사례(백엔드와 프런트엔드) 및 코딩 예제를 살펴보세요.