剑指offer 58. 链表中环的入口结点

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 20:56   2065   0
  1. 题目:给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null。
  2. 思路:
    1. 一直遍历链表,直到碰到一个之前出现过的节点,就是环的入口节点
  3. 代码:
    /*
    struct ListNode {
        int val;
        struct ListNode *next;
        ListNode(int x) :
            val(x), next(NULL) {
        }
    };
    */
    class Solution {
    public:
        map<ListNode*,int> mark;
        ListNode* EntryNodeOfLoop(ListNode* pHead)
        {
            map<ListNode*, int>::iterator it;
            while (pHead) {
                it = mark.find(pHead);
                if (it==mark.end()) {
                    mark.insert(make_pair(pHead, 1));
                } else {
                    return pHead;
                }
                pHead = pHead -> next;
            }
            return NULL;
        }
    };

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP