輸入:lista = [4,1,8,4,5] listb = [5,0,1,8,4,5] 輸出:8
輸入:lista = [0,9,1,2,4] listb = [3,2,4] 輸出:2
思路:雙指標掃瞄o(n)
a,b 分別代表兩個鍊錶的長度,鍊錶不相交則兩個指標分別走 a+b 步後都變成 null。
a,b 分別代表兩個鍊錶的長度,c表示相交鍊錶部分的長度,鍊錶相交則兩個指標分別走 a+b+c 步後在兩鍊錶交匯處相遇。
/**
* definition for singly-linked list.
* struct listnode
* };
*/class
solution
return l1;}}
;
/**
* definition for singly-linked list.
* struct listnode
* };
*/class
solution
auto l2 = headb;
while
(l2)
return
null;}
};
LeetCode160 相交鍊錶
編寫乙個程式,找到兩個單鏈表相交的起始節點。例如,下面的兩個鍊錶 在節點 c1 開始相交。注意 如果兩個鍊錶沒有交點,返回 null.在返回結果後,兩個鍊錶仍須保持原有的結構。可假定整個鍊錶結構中沒有迴圈。程式盡量滿足 o n 時間複雜度,且僅用 o 1 記憶體。解題思路 1.找到兩個鍊錶長度差n後...
Leetcode160 相交鍊錶
解法一 用乙個集合去判斷 class solution sets listnode tmp1 heada listnode tmp2 headb while tmp1 while tmp2 tmp2 tmp2 next return nullptr 解法二 先遍歷一遍兩個鍊錶得到的長度差n,然後讓長...
LeetCode 160 相交鍊錶
編寫乙個程式,找到兩個單鏈表相交的起始節點。例如,下面的兩個鍊錶 a a1 a2 c1 c2 c3 b b1 b2 b3 在節點 c1 開始相交。注意 如果兩個鍊錶沒有交點,返回 null.在返回結果後,兩個鍊錶仍須保持原有的結構。可假定整個鍊錶結構中沒有迴圈。程式盡量滿足 o n 時間複雜度,且僅...