mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
1.2 KiB
102 lines
1.2 KiB
5 years ago
|
## sametree
|
||
5 years ago
|
|
||
|
### Instructions
|
||
|
|
||
|
Given two binary trees, write a function to check if they are the same or not.
|
||
|
|
||
|
Two binary trees are considered the same if they are structurally identical and the nodes have the same value.
|
||
|
|
||
5 years ago
|
Write a function, `IsSameTree`, that returns `bool`.
|
||
5 years ago
|
|
||
|
### Expected function
|
||
|
|
||
|
```go
|
||
5 years ago
|
type TreeNodeL struct {
|
||
5 years ago
|
Left *TreeNodeL
|
||
5 years ago
|
Val int
|
||
5 years ago
|
Right *TreeNodeL
|
||
5 years ago
|
}
|
||
|
|
||
|
|
||
5 years ago
|
func IsSameTree(p *TreeNodeL, q *TreeNodeL) bool {
|
||
5 years ago
|
|
||
5 years ago
|
}
|
||
|
```
|
||
5 years ago
|
|
||
|
Example 1:
|
||
5 years ago
|
|
||
|
Input:
|
||
|
|
||
5 years ago
|
1
|
||
|
/ \
|
||
|
2 3
|
||
5 years ago
|
|
||
5 years ago
|
[1,2,3]
|
||
5 years ago
|
|
||
5 years ago
|
1
|
||
|
/ \
|
||
|
2 3
|
||
|
|
||
|
[1,2,3]
|
||
5 years ago
|
|
||
5 years ago
|
Output: true
|
||
5 years ago
|
|
||
5 years ago
|
Input:
|
||
5 years ago
|
|
||
5 years ago
|
1
|
||
|
/
|
||
|
2
|
||
|
|
||
|
[1,2]
|
||
|
|
||
|
1
|
||
|
\
|
||
|
2
|
||
5 years ago
|
|
||
5 years ago
|
[1,null,2]
|
||
5 years ago
|
|
||
5 years ago
|
Output: false
|
||
5 years ago
|
|
||
5 years ago
|
Input:
|
||
5 years ago
|
|
||
5 years ago
|
```
|
||
5 years ago
|
|
||
5 years ago
|
1
|
||
|
/ \
|
||
|
2 1
|
||
|
|
||
|
[1,2,1]
|
||
|
|
||
|
1
|
||
|
/ \
|
||
|
1 2
|
||
|
|
||
|
[1,1,2]
|
||
5 years ago
|
```
|
||
5 years ago
|
|
||
5 years ago
|
Output: false
|
||
5 years ago
|
|
||
|
### Usage
|
||
|
|
||
|
Here is a possible program to test your function :
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
func main() {
|
||
5 years ago
|
t1 := NewRandTree()
|
||
|
t2 := NewRandTree()
|
||
5 years ago
|
|
||
5 years ago
|
fmt.Println(IsSameTree(t1, t2))
|
||
5 years ago
|
}
|
||
|
```
|
||
|
|
||
|
### Output
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
|
true
|
||
|
student@ubuntu:~/[[ROOT]]/test$
|
||
|
```
|