leetcode 160 相交鍊錶

2021-09-23 01:45:09 字數 1055 閱讀 5886

編寫乙個程式,找到兩個單鏈表相交的起始節點。

注意:

小結:先將長的鍊錶遍歷到長度和短的鍊錶長度一致,然後同時遍歷比較兩個鍊錶,第乙個相同的節點就是相交起點。

# definition for singly-linked list.

# class listnode(object):

# def __init__(self, x):

# self.val = x

# self.next = none

class solution(object):

def getintersectionnode(self, heada, headb):

""":type head1, head1: listnode

:rtype: listnode

"""length_a = length_b = 0

cura = heada

curb = headb

while not cura == none:

length_a += 1

cura = cura.next

while not curb == none:

length_b += 1

curb = curb.next

length_diff = abs(length_a - length_b)

cura = heada

curb = headb

if length_a > length_b:

for i in range(length_diff):

cura = cura.next

else:

for i in range(length_diff):

curb = curb.next

while not cura == none:

if cura == curb:

return cura

cura, curb = cura.next, curb.next

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 時間複雜度,且僅...