zoukankan      html  css  js  c++  java
  • 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:

    A:          a1 → a2
                       ↘
                         c1 → c2 → c3
                       ↗            
    B:     b1 → b2 → b3
    

    begin to intersect at node c1.

    Notes:

      • If the two linked lists have no intersection at all, return null.
      • The linked lists must retain their original structure after the function returns.
      • You may assume there are no cycles anywhere in the entire linked structure.
      • Your code should preferably run in O(n) time and use only O(1) memory. 

    题目解答:

      判断两个链表是否有交集,并返回相交的第一个节点,若不想交,返回NULL。

      首先计算两个链表的长度,让长链表走到短链表头平行的位置之后,两个链表再一起开始走。并一边走,一边来判断是否节点是否相同。

    代码如下:

    /**
     * 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) {
            int lenA = getListLen(headA);
            int lenB = getListLen(headB);
            if((lenA == 0) || (lenB == 0))
                return NULL;
            ListNode *p = headA;
            ListNode *q = headB;
            if(lenA > lenB)
            {
                int i = lenA - lenB;
                while(i != 0)
                {
                    i--;
                    p = p -> next;
                }
            }
            else
            {
                int i = lenB - lenA;
                while(i != 0)
                {
                    i--;
                    q = q -> next;
                }
            }
            while((p != NULL) && (q != NULL) && (p != q) )
            {
                p = p -> next;
                q = q -> next;
            }
            if(p == q)
                return p;
            else
                return NULL;
        }
       
        int getListLen(ListNode *head)
        {
            int len = 0;
            ListNode *p = head;
            while(p != NULL)
            {
                len++;
                p = p-> next;
            }
            return len;
        }
    };

  • 相关阅读:
    AWK只打印某个域后的所有域
    Apache配置文件httpd.conf内容翻译
    DOM事件类型详解
    DOM中的事件处理概览与原理的全面剖析
    JavaScript实战(带收放动画效果的导航菜单)
    (转)高性能JavaScript:加载和运行(动态加载JS代码)
    (转)网页性能管理详解
    (转)JavaScript-性能优化之函数节流(throttle)与函数去抖(debounce)
    你真的知道setTimeout是如何运行的吗
    用原生JS读写CSS样式的方法总结
  • 原文地址:https://www.cnblogs.com/CodingGirl121/p/5431505.html
Copyright © 2011-2022 走看看