FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc21.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
/
lc21.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (35 loc) · 873 Bytes
Breadcrumbs
leetcode
/
code
/
lc21.java
Copy path
File metadata and controls
39 lines (35 loc) · 873 Bytes
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
package
code
;
/*
* 21. Merge Two Sorted Lists
* 题意:合并两个链表
* 难度:Easy
* 分类:Linked List
* Tips:可用递归的写法,代码更简洁
*/
public
class
lc21
{
public
ListNode
mergeTwoLists
(
ListNode
l1
,
ListNode
l2
) {
ListNode
res
=
new
ListNode
(
0
);
ListNode
temp
=
res
;
while
(
l1
!=
null
&&
l2
!=
null
){
if
(
l1
.
val
<
l2
.
val
){
temp
.
next
=
l1
;
temp
=
temp
.
next
;
l1
=
l1
.
next
;
}
else
{
temp
.
next
=
l2
;
temp
=
temp
.
next
;
l2
=
l2
.
next
;
}
}
if
(
l1
!=
null
)
temp
.
next
=
l1
;
if
(
l2
!=
null
)
temp
.
next
=
l2
;
return
res
.
next
;
}
public
class
ListNode
{
int
val
;
ListNode
next
;
ListNode
(
int
x
) {
val
=
x
; }
}
}
Back
|
FazBrowse Home
|
New Git URL