开源文档库
About
开源文档库
博客(建设ing)
Community
简体中文
English
开源文档库
数据结构与算法
二叉树
二叉树
Binary Tree Operations
Tags:
Leetcode
Data Structure
Algorithm
Binary Tree
Categories:
Leetcode
Data Structure and Algorithms
type
TreeNode
struct
{
Val
int
Left
*
TreeNode
Right
*
TreeNode
}
基础操作
144. 二叉树的前序遍历
94. 二叉树的中序遍历
145. 二叉树的后序遍历
102. 二叉树的层序遍历
100. 相同的树
112. 路径总和
二叉搜索树(BST)特性
230. 二叉搜索树中第 K 小的元素
530. 二叉搜索树的最小绝对差