摘要: 一. 先序遍历 1. 题目分析 根节点→左子树→右子树 (先、中、后 指的是根节点的位置,然后都是先左后右) leetcode:https://leetcode.cn/problems/binary-tree-preorder-traversal/ 难度:【简单】 2. 递归的几种写法 (1). 函 阅读全文
posted @ 2024-03-19 10:54 Yaopengfei 阅读(16) 评论(1) 推荐(0) 编辑