leetcode 160:相交链表

题目:相交链表

  • 题目描述:
    编写一个程序,找到两个单链表相交的起始节点。

例如,下面的两个链表:

A: a1 → a2

c1 → c2 → c3

B: b1 → b2 → b3

在节点 c1 开始相交。
注意:

  • 如果两个链表没有交点,返回 null.
  • 在返回结果后,两个链表仍须保持原有的结构。
  • 可假定整个链表结构中没有循环。
  • 程序尽量满足 O(n) 时间复杂度,且仅用 O(1) 内存。

解法一:

[]
/**
 * 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) {
        std::set<ListNode*> node_set;  //设置查找集合node_set
        while(headA){
            node_set.insert(headA);  //将链表A中的节点插入node_set
            headA = headA->next;  //遍历链表A
        }
        while(headB){
            if(node_set.find(headB)!=node_set.end()){
                return headB;  //当在headB中找到第一个出现在node_set中的节点时
            }
            headB = headB->next;   //遍历链表B
        }
        return NULL;
    }
};

解法二:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
int get_list_length(ListNode *head){
    int len = 0;
    while(head){  //遍历链表,计算链表长度
        len++;
        head = head->next;
    }
    return len;
}

ListNode *forward_long_list(int long_len,int short_len,ListNode *head){
    int delta = long_len-short_len;
    while(head && delta){  //将指针向前移动至多出节点个数后面的位置
        head = head->next;
        delta--;
    }
    return head;
}
class Solution {
public:
    ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
        int list_A_len = get_list_length(headA);
        int list_B_len = get_list_length(headB);
        if(list_A_len>list_B_len){  //如果链表A长,移动headA到对应位置
            headA = forward_long_list(list_A_len,list_B_len,headA);
        }else{  //如果链表B长,移动headB到对应位置
            headB = forward_long_list(list_B_len,list_A_len,headB);
        }
        while(headA && headB){
            if(headA==headB){   //当两个指针指向了同一个节点时,说明找到了
                return headA;
            }
            headA = headA->next;
            headB = headB->next;
        }
        return NULL;
    }
};

猜你喜欢

转载自blog.csdn.net/gjpzl/article/details/80145974