题解 | #链表中环的入口结点#

链表中环的入口结点

https://www.nowcoder.com/practice/253d2c59ec3e4bc68da16833f79a38e4


/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
        val(x), next(NULL) {
    }
};
*/
#include <map>
class Solution {
public:
  //判断当前节点是否被遍历过
    bool IS_EXIST(map<int,ListNode*>& listMap,ListNode* cur){
        for(auto lm : listMap){
            if(cur == lm.second)    return true;    
        }
        return false;
    }

    ListNode* EntryNodeOfLoop(ListNode* pHead) {
      //记录当前节点  
	  ListNode* cur = pHead;
	  //用来存储遍历过的节点
        map<int,ListNode*> listMap;
        int i = 0;
        while(cur){
            if(IS_EXIST(listMap, cur))  return cur;
            listMap.insert(make_pair(i, cur));
            i++;
            cur = cur->next;
        }
        return nullptr;
    }
};

全部评论

相关推荐

牛客175617325号:有的面试官不开摄像头 可能是因为他是竞业来的
点赞 评论 收藏
分享
牛客868257804号:九个中铁八个中建
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务