160相交鍊錶

2021-09-27 15:25:00 字數 952 閱讀 8424

題目描述:編寫乙個程式,找到兩個單鏈表相交的起始節點。沒有就返回null。

注意:

題解思路:從a鍊錶第乙個元素開始,去遍歷b鍊錶,找到乙個相同元素後,同步遍歷a和b鍊錶,所有元素相同,即兩個鍊錶為相交鍊錶,並返回同步遍歷的起始節點。

struct listnode *

getintersectionnode

(struct listnode *heada,

struct listnode *headb)

b=b->next;

} temp=b;

while

(b&&a)

a=a->next;

b=b->next;}if

(!b&&

!a) a=a->next;}if

(!flag)

return res;

}

思考:感覺這題目有點問題,比如a:[1,2,3,4,0,5] b:[3,2,0,5] ,看到其他解法,先去掉長的鍊錶的前一部分,讓兩個鍊錶長度相同,然後同步遍歷,返回第乙個相同的節點,但是測試用例卻沒有涉及到我這種情況,然後看官方題解,發現預設沒有我這種情況,所以個人感覺題目不是很嚴謹。

理解官方題解的要求,發現就是上面的要求。

int

len(

struct listnode *h)

return count;

}struct listnode *

getintersectionnode

(struct listnode *heada,

struct listnode *headb)

while

(resa&&resb)

resa=resa->next;

resb=resb->next;

}return resa;

}

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 相交鍊錶

編寫乙個程式,找到兩個單鏈表相交的起始節點。如下面的兩個鍊錶 在節點 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...