LeetCode 1367. 二叉树中的列表(二叉树的遍历、DFS)
程序员文章站
2022-05-20 20:25:00
...
二叉树中的列表时间一般
先遍历二叉树,找到所有起点;
然后对于每个起点搜寻是否存在这样的路径。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
queue<TreeNode*> startNodes;
int start;
bool isSubPath(ListNode* head, TreeNode* root) {
start = head->val;
getStartNodes(root);
while(!startNodes.empty()){
TreeNode* r = startNodes.front();
startNodes.pop();
if(dfs(r,head)){
return true;
}
}
return false;
}
bool dfs(TreeNode* root, ListNode* head){
if(!head){
return true;
}
if(head && !root){
return false;
}
if(root->val == head->val){
if(dfs(root->left,head->next)){
return true;
}
if(dfs(root->right,head->next)){
return true;
}
}
return false;
}
void getStartNodes(TreeNode *root){
if(!root){
return ;
}
if(root->val==start){
startNodes.push(root);
}
getStartNodes(root->left);
getStartNodes(root->right);
}
};
推荐阅读
-
Java实现的二叉树常用操作【前序建树,前中后递归非递归遍历及层序遍历】
-
Python利用前序和中序遍历结果重建二叉树的方法
-
C语言实现线索二叉树的前中后创建和遍历详解
-
Python实现输入二叉树的先序和中序遍历,再输出后序遍历操作示例
-
[PHP] 算法-根据前序和中序遍历结果重建二叉树的PHP实现
-
【算法】二叉树的前序、中序、后序、层序遍历和还原。
-
Python二叉树的遍历操作示例【前序遍历,中序遍历,后序遍历,层序遍历】
-
leetcode 958. 二叉树的完全性检验(输出是否是完全二叉树 dfs/bfs每次假如队列的时候判断 值是不是sz)
-
Java实现 LeetCode 637 二叉树的层平均值(遍历树)
-
LeetCode637. 二叉树的层平均值(层序遍历)