树-题解
haiki66
Nothing replaces hard work!
展开
-
二叉树的三种遍历C++ 从简入模板
前序遍历递归void preorder(TreeNode *root, vector<int> &path){ if(root != NULL) { path.push_back(root->val); preorder(root->left, path); preorder(root->right, path); }}非递归前序遍历/** * Definition for a bi原创 2020-09-29 21:08:49 · 185 阅读 · 0 评论 -
leetcode Path Sum 大礼包
文章目录前言112. Path Sum:easy113. Path Sum II-medium437. Path Sum III-easy如果你正在为刷leetcode而苦恼不已,算法上总觉得提升不了,那么不要慌张,不要气馁,因为很多人其实都和你一样,为easy题的通过而开心,为hard题的没思路而自暴自弃。但是请相信,只要你坚持,每天一遍又一遍的刷曾经刷过的题,寻找新的解题思路,总结问题的规...原创 2020-05-01 17:57:12 · 203 阅读 · 0 评论