-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path160.相交链表.java
62 lines (57 loc) · 1.28 KB
/
160.相交链表.java
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* @lc app=leetcode.cn id=160 lang=java
*
* [160] 相交链表
*/
// @lc code=start
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
ListNode temp = null;
ListNode head1 = headA;
ListNode head2 = headB;
int countA = 0;
int countB= 0;
while(head1 != null){
countA++;
head1 = head1.next;
}
while(head2 != null){
countB++;
head2 = head2.next;
}
head1 = headA;
head2= headB;
if(countA > countB){
while(countA>countB){
head1 = head1.next;
countA--;
}
}else if(countB > countA){
while(countB > countA){
head2 = head2.next;
countB--;
}
}
while(head1!=null && head2!=null){
if(head1 == head2){
temp = head1;
break;
}
head1 =head1.next;
head2 = head2.next;
}
return temp;
}
}
// @lc code=end