FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc160.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
/
lc160.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (33 loc) · 1.06 KB
Breadcrumbs
leetcode
/
code
/
lc160.java
Copy path
File metadata and controls
33 lines (33 loc) · 1.06 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
package
code
;
/*
* 160. Intersection of Two Linked Lists
* 题意:求两个链表的交叉点
* 难度:Easy
* 分类:LinkedList
* 思路:两种方法:1.找出两个链表的长度差x,长的先走x步; 2.走完一个链表,走另一个链表,两个cur都走了两个链表长度的和步
* Tips:两种方法的本质是一样的其实,都是找到了步数差,都遍历了两遍
*/
public
class
lc160
{
public
class
ListNode
{
int
val
;
ListNode
next
;
ListNode
(
int
x
) {
val
=
x
; }
}
public
ListNode
getIntersectionNode
(
ListNode
headA
,
ListNode
headB
) {
if
(
headA
==
null
||
headB
==
null
)
return
null
;
ListNode
curA
=
headA
;
ListNode
curB
=
headB
;
while
(
curA
!=
curB
) {
if
(
curA
==
null
)
curA
=
headB
;
if
(
curB
==
null
)
curB
=
headA
;
if
(
curA
==
curB
)
return
curA
;
//别忘了判断一下是否相等
curA
=
curA
.
next
;
curB
=
curB
.
next
;
}
return
curA
;
}
}
Back
|
FazBrowse Home
|
New Git URL