僅記錄學習筆記,如有錯誤歡迎指正。
編寫乙個程式,找到兩個單鏈表相交的起始節點。保證時間複雜度不超過 o(n)。
a: a1 → a2
↘c1 → c2 → c3
↗b: b1 → b2 → b3
//定義鍊錶
public static class listnode
listnode next;
}//法一:a+b = b+a 長度一致
public listnode getintersectionnode1
(listnode head1 ,listnode head2 )
listnode l1 = head1;
listnode l2 = head2;
while
(l1 != l2)
return l1;
}
//定義鍊錶
public static class listnode
listnode next;
}//法二:比較長度 縮小到長度一致
public listnode getintersectionnode2
(listnode head1 ,
int len1 ,listnode head2,
int len2 )
listnode l1 = head1;
listnode l2 = head2;
while
(len1 < len2)
while
(len1 > len2)
while
(l1 != l2)
return l1;
}
160 相交鍊錶
編寫乙個程式,找到兩個單鏈表相交的起始節點。如下面的兩個鍊錶 在節點 c1 開始相交。示例 1 輸入 intersectval 8,lista 4,1,8,4,5 listb 5,0,1,8,4,5 skipa 2,skipb 3 輸出 reference of the node with valu...
160 相交鍊錶
題目描述 題目問題和難點 1.是找相交的那個節點,而不是值相等的節點。示例中1的值相同但不是相交的節點 2.此題目不考慮有環的鍊錶所以思路很簡單。public static listnode getintersectionnode listnode heada,listnode headb 1.獲取...
160相交鍊錶
題目描述 編寫乙個程式,找到兩個單鏈表相交的起始節點。沒有就返回null。注意 題解思路 從a鍊錶第乙個元素開始,去遍歷b鍊錶,找到乙個相同元素後,同步遍歷a和b鍊錶,所有元素相同,即兩個鍊錶為相交鍊錶,並返回同步遍歷的起始節點。struct listnode getintersectionnode...