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 |
Tags
- LeetCode
- 파이썬 알고리즘
- 파이썬릿코드풀기
- 릿코드 파이썬
- python priority queue
- 파이썬알고리즘
- 알고리즘풀기
- 릿코드풀이
- 잇츠디모
- 파이썬알고리즘풀기
- leetcode풀기
- 릿코드풀기
- 알고리즘풀이
- leetcode 풀기
- python 알고리즘
- python 릿코드
- 파이썬 릿코드
- python xor
- binary search
- 파이썬 알고리즘 풀기
- python sorted
- 파이썬릿코드
- 코틀린기초
- leetcode풀이
- python zip_longest
- 릿코드
- python Leetcode
- 파이썬 프로그래머스
- 상가수익률계산기
- 릿코드 풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 654. Maximum Binary Tree 본문
반응형
654. Maximum Binary Tree
https://leetcode.com/problems/maximum-binary-tree/
문제)
솔루션1) - 재귀
재귀적인 방법으로 왼쪽 서브트리, 오른쪽 서브트리를 구성합니다.
풀이 순서
- 초기에 루트 노드를 생성
- nums에서 max 값과 idx를 탐색
- idx 기준으로 왼쪽과 오른쪽으로 나눠서 배열을 나누고 재귀적으로 subtree 구성
- nums가 비어 있으면 재귀 함수는 return None
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def constructMaximumBinaryTree(self, nums):
# base condition
if len(nums) == 0: return None
# 최대 값, 최대 값이 위치한 인덱스 탐색
(max_val, max_val_idx) = max((v, i) for i, v in enumerate(nums))
# 노드 생성
node = TreeNode(max_val)
# 왼쪽 서브 트리 구성
left_nums = nums[0: max_val_idx]
node.left = self.constructMaximumBinaryTree(left_nums)
# 오른쪽 서브 트리 구성
right_nums = nums[max_val_idx+1:]
node.right = self.constructMaximumBinaryTree(right_nums)
return node
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 198. House Robber (0) | 2021.12.02 |
---|---|
LeetCode 풀기 - 1329. Sort the Matrix Diagonally (0) | 2021.12.02 |
LeetCode 풀기 - 53. Maximum Subarray (0) | 2021.11.30 |
LeetCode 풀기 - 1313. Decompress Run-Length Encoded List (0) | 2021.11.29 |
LeetCode 풀기 - 897. Increasing Order Search Tree (0) | 2021.11.26 |
Comments