力扣:1367. 二叉树中的列表

This commit is contained in:
huangge1199 2021-03-05 15:03:20 +08:00
parent 66896e0d05
commit 0ebca8aca4

View File

@ -0,0 +1,68 @@
package com.code.leet.study.t2021.t20210305;
import com.code.leet.entiy.ListNode;
import com.code.leet.entiy.TreeNode;
/**
* 给你一棵以 root 为根的二叉树和一个 head 为第一个节点的链表
* <p>
* 如果在二叉树中存在一条一直向下的路径且每个点的数值恰好一一对应以 head 为首的链表中每个节点的值那么请你返回 True 否则返回 False
* <p>
* 一直向下的路径的意思是从树中某个节点开始一直连续向下的路径
* <p>
*  
* <p>
* 示例 1
* <p>
* <p>
* <p>
* 输入head = [4,2,8], root = [1,4,4,null,2,2,null,1,null,6,8,null,null,null,null,1,3]
* 输出true
* 解释树中蓝色的节点构成了与链表对应的子路径
* 示例 2
* <p>
* <p>
* <p>
* 输入head = [1,4,2,6], root = [1,4,4,null,2,2,null,1,null,6,8,null,null,null,null,1,3]
* 输出true
* 示例 3
* <p>
* 输入head = [1,4,2,6,8], root = [1,4,4,null,2,2,null,1,null,6,8,null,null,null,null,1,3]
* 输出false
* 解释二叉树中不存在一一对应链表的路径
*  
* <p>
* 提示
* <p>
* 二叉树和链表中的每个节点的值都满足 1 <= node.val <= 100 
* 链表包含的节点数目在 1  100 之间
* 二叉树包含的节点数目在 1  2500 之间
* <p>
* 来源力扣LeetCode
* 链接https://leetcode-cn.com/problems/linked-list-in-binary-tree
* 著作权归领扣网络所有商业转载请联系官方授权非商业转载请注明出处
*/
public class IsSubPath {
/**
* 1367. 二叉树中的列表
*/
public boolean isSubPath(ListNode head, TreeNode root) {
if (root == null) {
return false;
}
return isSubPath(head, root.left) || isSubPath(head, root.right) || dfs(head, root);
}
private boolean 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);
}
}