题解 | #判断链表中是否有环#

判断链表中是否有环

https://www.nowcoder.com/practice/650474f313294468a4ded3ce0f7898b9

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
#include <iostream>
#include <unistd.h>
#include <vector>
class Solution {
  public:
    bool hasCycle(ListNode* head) {
        vector<ListNode*> addr;
        while (head!=nullptr) {
            if (head->next==nullptr) {
                return false;
            }
            if (count(addr.begin(), addr.end(), (head))) {
                return true;
            }
            addr.push_back(head);
            head = head->next;
        }
        return false;
    }
};

时间复杂度O(n),空间复杂度O(n)。

1.新建一个vector,内部变量类型为节点类,循环往里放节点;

2.判断是否有重复的节点,有的话,则返回true

3.没环则返回false -----确实没环,只有一个节点且没环

全部评论

相关推荐

Pandaileee:校友加油我现在也只有一个保底太难了
点赞 评论 收藏
分享
头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务