会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
tmpUser
首页
管理
2021年2月22日
【C++】二叉树4种遍历方式的递归和迭代实现
摘要: 前序遍历:根左右 递归 class Solution { vector<int> res; public: vector<int> preorderTraversal(TreeNode* root) { if (!root) return {}; // 前序操作 res.push_back(root
阅读全文
posted @ 2021-02-22 16:41 tmpUser
阅读(316)
评论(0)
推荐(0)
编辑
公告