日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

letecode [160] - Intersection of Two Linked Lists

發布時間:2024/8/26 编程问答 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 letecode [160] - Intersection of Two Linked Lists 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

?Write a program to find the node at which the intersection of two singly linked lists begins.

題目大意

?  給定兩個鏈表,找到它們的第一個公共節點并返回。

理? 解:

?  從第一個公共節點開始,兩鏈表后面的節點都是公共的。

  計算兩個鏈表的長度,從長度相同的節點開始往后遍歷,并比較p==q,若相等,則當前節點為第一個公共節點;不等則繼續往后找。

代 碼 C++:

/*** Definition for singly-linked list.* struct ListNode {* int val;* ListNode *next;* ListNode(int x) : val(x), next(NULL) {}* };*/ class Solution { public:ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {if(headA==NULL || headB==NULL) return NULL;int lenA=0,lenB=0;ListNode *p = headA;ListNode *q = headB;while(p!=NULL){lenA++;p = p->next;}while(q!=NULL){lenB++;q = q->next;}p = headA;q = headB;while(lenA>lenB){p = p->next;lenA--;}while(lenA<lenB){q = q->next;lenB--;}while(p!=NULL){if(p==q){return p;}p = p->next;q = q->next;}return NULL;} };

運行結果:

?  執行用時 :72 ms, 在所有C++提交中擊敗了84.85%的用戶

內存消耗 :16.9 MB, 在所有C++提交中擊敗了11.06%的用戶

轉載于:https://www.cnblogs.com/lpomeloz/p/11002364.html

總結

以上是生活随笔為你收集整理的letecode [160] - Intersection of Two Linked Lists的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。