欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[leetcode]1367. 二叉树中的列表

程序员文章站 2022-05-06 22:53:04
...

[leetcode]1367. 二叉树中的列表
[leetcode]1367. 二叉树中的列表
[leetcode]1367. 二叉树中的列表
[leetcode]1367. 二叉树中的列表

/**
 * 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:
    bool dfs(ListNode* head, TreeNode* root)
    {
        if(head == NULL) return true;
        if(root == NULL) return false;
        if(root->val != head->val) return false;
        return dfs(head->next, root->left) || dfs(head->next, root->right);
    }
    bool isSubPath(ListNode* head, TreeNode* root) {
        if(root == NULL ) return false;
        return dfs(head, root) || isSubPath(head, root->left) || isSubPath(head, root->right);
    }
};
相关标签: 树和二叉树 DFS