FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc104.java at master · mJackie/leetcode · GitHub
mJackie
/
leetcode
Public
Notifications
You must be signed in to change notification settings
Fork
135
Star
405
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode
/
code
/
lc104.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (40 loc) · 1.08 KB
Breadcrumbs
leetcode
/
code
/
lc104.java
Copy path
File metadata and controls
43 lines (40 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package
code
;
import
java
.
util
.
ArrayDeque
;
import
java
.
util
.
Queue
;
/*
* 104. Maximum Depth of Binary Tree
* 题意:二叉树最大深度
* 难度:Easy
* 分类:Tree, Depth-first Search
* 思路:深度优先搜索,递归实现。非递归BFS,相当于层序遍历。
* Tips:
*/
public
class
lc104
{
public
class
TreeNode
{
int
val
;
TreeNode
left
;
TreeNode
right
;
TreeNode
(
int
x
) {
val
=
x
; }
}
public
int
maxDepth
(
TreeNode
root
) {
if
(
root
==
null
)
return
0
;
return
Math
.
max
(
maxDepth
(
root
.
left
),
maxDepth
(
root
.
right
)) +
1
;
}
public
int
maxDepth2
(
TreeNode
root
) {
if
(
root
==
null
)
return
0
;
Queue
<
TreeNode
>
q
=
new
ArrayDeque
<>();
q
.
add
(
root
);
int
depth
=
0
;
while
(!
q
.
isEmpty
()){
int
size
=
q
.
size
();
while
(
size
>
0
){
TreeNode
tn
=
q
.
remove
();
if
(
tn
.
left
!=
null
)
q
.
add
(
tn
.
left
);
if
(
tn
.
right
!=
null
)
q
.
add
(
tn
.
right
);
size
--;
}
depth
++;
}
return
depth
;
}
}
Back
|
FazBrowse Home
|
New Git URL