題目:
編寫乙個程式,找到兩個單鏈表相交的起始節點。例如,下面的兩個鍊錶:
a: a1 → a2
↘c1 → c2 → c3
↗
b: b1 → b2 → b3
在節點 c1 開始相交。
注意:如果兩個鍊錶沒有交點,返回 null.
在返回結果後,兩個鍊錶仍須保持原有的結構。
可假定整個鍊錶結構中沒有迴圈。
程式盡量滿足 o(n) 時間複雜度,且僅用 o(1) 記憶體。
解題演算法:
/*** definition for singly-linked list.
* struct listnode
* };
*/class solution
while(head)
return count;
}listnode *getintersectionnode(listnode *heada, listnode *headb)
if(l1 > l2)
}if(l1 < l2)
}while(heada->next&&headb->next&& heada!=headb)
if(heada!=headb)else
}};
演算法(11) 相交鍊錶
僅記錄學習筆記,如有錯誤歡迎指正。編寫乙個程式,找到兩個單鏈表相交的起始節點。保證時間複雜度不超過 o n a a1 a2 c1 c2 c3 b b1 b2 b3 定義鍊錶 public static class listnode listnode next 法一 a b b a 長度一致 publ...
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.獲取...