[LeetCode] Intersection of Two Linked Lists

简介: Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following two linked lists:begin to intersect at node c1.解题思路 首先把两个链表

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

For example, the following two linked lists:

begin to intersect at node c1.

  • 解题思路
    首先把两个链表的所有非空结点入栈,然后比较栈顶元素并出栈,直到一个栈为空或者栈顶元素不相等,此时上一次比较的结点即为相交结点。
  • 实现代码
/*************************************************************
    *  @Author   : 楚兴
    *  @Date     : 2015/2/8 13:33
    *  @Status   : Accepted
    *  @Runtime  : 76 ms
*************************************************************/
#include <vector>
#include <iostream>
#include <stack>
using namespace std;

struct ListNode {
    int val;
    ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};

class Solution {
public:
    ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
        stack<ListNode*> stack1;
        stack<ListNode*> stack2;
        ListNode* pa = headA;
        ListNode* pb = headB;
        while(pa)
        {
            stack1.push(pa);
            pa = pa->next;
        }
        while(pb)
        {
            stack2.push(pb);
            pb = pb->next;
        }

        ListNode* temp = NULL;
        while (!stack1.empty() && !stack2.empty())
        {
            if (stack1.top()->val == stack2.top()->val)
            {
                temp = stack1.top();
                stack1.pop();
                stack2.pop();
            }
            else
            {
                return temp;
            }
        }
        return temp;
    }
};

void addListNode(ListNode*& head, int i)
{
    ListNode* h = head;
    while(h->next != NULL)
    {
        h = h->next;
    }
    ListNode* temp = new ListNode(i);
    h->next = temp;
}

//void print(ListNode* head)
//{
//  ListNode* temp = head;
//  while(temp)
//  {
//      cout<<temp->val<<endl;
//      temp = temp->next;
//  }
//}

int main()
{
    Solution s;
    ListNode* headA = new ListNode(0);
    addListNode(headA, 1);
    addListNode(headA, 2);
    addListNode(headA, 1);
    addListNode(headA, 2);
    addListNode(headA, 3);

    ListNode* headB = new ListNode(0);
    addListNode(headB, 1);
    addListNode(headB, 2);
    addListNode(headB, 3);
    addListNode(headB, 1);
    addListNode(headB, 2);
    addListNode(headB, 3);

    ListNode* p = s.getIntersectionNode(headA, headB);
    cout<<p->val<<endl;
    system("pause");
}
目录
相关文章
|
存储 缓存 算法
LeetCode刷题---Two Sum(一)
LeetCode刷题---Two Sum(一)
Leetcode 4. Median of Two Sorted Arrays
题目描述很简单,就是找到两个有序数组合并后的中位数,要求时间复杂度O(log (m+n))。 如果不要去时间复杂度,很容易就想到了归并排序,归并排序的时间复杂度是O(m+n),空间复杂度也是O(m+n),不满足题目要求,其实我开始也不知道怎么做,后来看了别人的博客才知道有个二分法求两个有序数组中第k大数的方法。
39 0
|
存储 C++ Python
LeetCode刷题---Add Two Numbers(一)
LeetCode刷题---Add Two Numbers(一)
|
存储 算法 安全
LeetCode - #2 Add Two Numbers
我们社区从本期开始会将顾毅(Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。)的 Swift 算法题题解整理为文字版以方便大家学习与阅读。 不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。
LeetCode - #2 Add Two Numbers
|
存储 算法 安全
LeetCode - #1 Two Sum
我们社区从本期开始会将顾毅(Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。)的 Swift 算法题题解整理为文字版以方便大家学习与阅读。 不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。
LeetCode - #1 Two Sum
LeetCode 141. 环形链表 Linked List Cycle
LeetCode 141. 环形链表 Linked List Cycle
LeetCode 237. 删除链表中的节点 Delete Node in a Linked List
LeetCode 237. 删除链表中的节点 Delete Node in a Linked List
LeetCode Contest 178-1367. 二叉树中的列表 Linked List in Binary Tree
LeetCode Contest 178-1367. 二叉树中的列表 Linked List in Binary Tree
LeetCode 350. Intersection of Two Arrays II
给定两个数组,编写一个函数来计算它们的交集。
77 0
LeetCode 350. Intersection of Two Arrays II
|
Python
LeetCode 349. Intersection of Two Arrays
给定两个数组,编写一个函数来计算它们的交集。
69 0
LeetCode 349. Intersection of Two Arrays