-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathIsSameTreeSln.cs
39 lines (35 loc) · 1.08 KB
/
IsSameTreeSln.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
using System;
using System.Collections.Generic;
using System.Text;
namespace leetcodeTest
{
//572. Subtree of Another Tree
public class IsSameTreeSln
{
// Definition for a binary tree node.
public class TreeNode
{
public int val;
public TreeNode left;
public TreeNode right;
public TreeNode(int x) { val = x; }
}
public bool IsSubtree(TreeNode s, TreeNode t)
{
if (s == null) return false;
if (isSame(s, t)) return true;
//s.left-tree和t-tree是不是相等树?
//s.right-tree和t-tree是不是相等树?
return IsSubtree(s.left, t) || IsSubtree(s.right, t);
}
//判断s-tree和t-tree是不是相等树
private bool isSame(TreeNode s, TreeNode t)
{
if (s == null && t == null) return true;
if (s == null || t == null) return false;
return s.val == t.val &&
isSame(s.left, t.left) &&
isSame(s.right, t.right);
}
}
}