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
- 릿코드 파이썬
- python xor
- 릿코드풀기
- leetcode풀이
- python priority queue
- 릿코드 풀기
- binary search
- 파이썬알고리즘풀기
- 코틀린기초
- 파이썬 프로그래머스
- 알고리즘풀기
- 잇츠디모
- 파이썬 릿코드
- 릿코드풀이
- 상가수익률계산기
- 알고리즘풀이
- 파이썬 알고리즘
- 파이썬릿코드풀기
- leetcode 풀기
- python 알고리즘
- 파이썬 알고리즘 풀기
- 파이썬알고리즘
- python Leetcode
- python zip_longest
- leetcode풀기
- python sorted
- LeetCode
- 릿코드
- 파이썬릿코드
- python 릿코드
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 108. Convert Sorted Array to Binary Search Tree 본문
반응형
108. Convert Sorted Array to Binary Search Tree
https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/
문제)
솔루션1) 재귀
# 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 sortedArrayToBST(self, nums: List[int]) -> Optional[TreeNode]:
if not nums:
return None
mid_idx = len(nums)//2
node = TreeNode(nums[mid_idx])
node.left = self.sortedArrayToBST(nums[:mid_idx])
node.right = self.sortedArrayToBST(nums[mid_idx+1:])
return node
함께 보면 좋은 글
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 34. Find First and Last Position of Element in Sorted Array (0) | 2022.02.28 |
---|---|
LeetCode 풀기 - 64. Minimum Path Sum (0) | 2022.02.28 |
LeetCode 풀기 - 662. Maximum Width of Binary Tree (0) | 2022.02.27 |
LeetCode 풀기 - 49. Group Anagrams (0) | 2022.02.26 |
LeetCode 풀기 - 2169. Count Operations to Obtain Zero (0) | 2022.02.26 |
Comments