-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1367.二叉树中的列表.cs
158 lines (153 loc) · 3.95 KB
/
1367.二叉树中的列表.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
* @lc app=leetcode.cn id=1367 lang=csharp
*
* [1367] 二叉树中的列表
*
* https://leetcode.cn/problems/linked-list-in-binary-tree/description/
*
* algorithms
* Medium (42.89%)
* Likes: 132
* Dislikes: 0
* Total Accepted: 18.9K
* Total Submissions: 44K
* Testcase Example: '[4,2,8]\n[1,4,4,null,2,2,null,1,null,6,8,null,null,null,null,1,3]'
*
* 给你一棵以 root 为根的二叉树和一个 head 为第一个节点的链表。
*
* 如果在二叉树中,存在一条一直向下的路径,且每个点的数值恰好一一对应以 head 为首的链表中每个节点的值,那么请你返回 True ,否则返回 False
* 。
*
* 一直向下的路径的意思是:从树中某个节点开始,一直连续向下的路径。
*
*
*
* 示例 1:
*
*
*
* 输入:head = [4,2,8], root =
* [1,4,4,null,2,2,null,1,null,6,8,null,null,null,null,1,3]
* 输出:true
* 解释:树中蓝色的节点构成了与链表对应的子路径。
*
*
* 示例 2:
*
*
*
* 输入: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:
*
* 输入: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
* 解释:二叉树中不存在一一对应链表的路径。
*
*
*
*
* 提示:
*
*
* 二叉树和链表中的每个节点的值都满足 1 <= node.val <= 100 。
* 链表包含的节点数目在 1 到 100 之间。
* 二叉树包含的节点数目在 1 到 2500 之间。
*
*
*/
// @lc code=start
/**
* Definition for singly-linked list.
* public class ListNode {
* public int val;
* public ListNode next;
* public ListNode(int val=0, ListNode next=null) {
* this.val = val;
* this.next = next;
* }
* }
*/
/**
* Definition for a binary tree node.
* public class TreeNode {
* public int val;
* public TreeNode left;
* public TreeNode right;
* public TreeNode(int val=0, TreeNode left=null, TreeNode right=null) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
public class Solution {
// 43 39 116 47.6;
// 先序遍历+DFS, 可惜没有做到一个函数搞定
public bool IsSubPath(ListNode head, TreeNode root) {
if(head == null){
return true;
}
if(root == null){
return false;
}
return Dfs(head, root) || IsSubPath(head, root.left) || IsSubPath(head, root.right);
}
public bool Dfs(ListNode head, TreeNode root){
if(head == null){
return true;
}
if(root == null){
return false;
}
if(head.val != root.val){
return false;
}
return Dfs(head.next, root.left) || Dfs(head.next, root.right);
}
ListNode head;
TreeNode newRoot;
public bool IsSubPath9(ListNode head, TreeNode root) {
this.head = head;
this.newRoot = root;
return Recur(head, root);
}
public bool Recur(ListNode head, TreeNode root) {
if(head == null){
return true;
}
if(root == null){
return false;
}
Console.WriteLine($"{head.val} {root.val}");
if(head.val == root.val){
if(Recur(head.next, root.left)){
return true;
}
if(Recur(head.next, root.right)){
return true;
}
}else{
if(Recur(this.head, newRoot.left)){
return true;
}
if(Recur(this.head, newRoot.right)){
return true;
}
}
return false;
}
}
// @lc code=end
/*
[4,2,8]\n
[1,4,4,null,2,2,null,1,null,6,8,null,null,null,null,1,3]\n
[1,4,2,6]\n
[1,4,4,null,2,2,null,1,null,6,8,null,null,null,null,1,3]\n
[1,4,2,6,8]\n
[1,4,4,null,2,2,null,1,null,6,8,null,null,null,null,1,3]
*/