LeetCode 【LeetCode】 98. Validate Binary Search Tree 解答・解説【Python】 はじめに LeetCodeの問題を解答します。 なるべく、問題の和訳と詳細なコメントを書いています。 余裕があれば、複数のアプローチの解答と、実際の面接を想定して英語での解法やコメントを書いています。 ... 2023.05.14 LeetCodePythonアルゴリズムデータ構造二分探索木二分木深さ優先探索
LeetCode 【LeetCode】 102. Binary Tree Level Order Traversal 解答・解説【Python】 はじめに LeetCodeの問題を解答します。 なるべく、問題の和訳と詳細なコメントを書いています。 余裕があれば、複数のアプローチの解答と、実際の面接を想定して英語での解法やコメントを書いています。 ... 2023.05.14 LeetCodePythonアルゴリズムデータ構造二分木幅優先探索
Python 【LeetCode】617. Merge Two Binary Trees 解答・解説【Python】 問題 原文 You are given two binary trees root1 and root2. Imagine that when you put one of them to cover the other, s... 2023.04.10 Pythonアルゴリズムデータ構造二分木再帰
LeetCode 【LeetCode】114. Flatten Binary Tree to Linked List 解答・解説【Python】 問題 原文 Given the root of a binary tree, flatten the tree into a "linked list": The "linked list" should use the ... 2023.01.23 LeetCodepre-order-travarsalPythonデータ構造二分木