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

判断链表中是否有环

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

/**

  • Definition for singly-linked list.
  • struct ListNode {
  • int val;
    
  • ListNode *next;
    
  • ListNode(int x) : val(x), next(NULL) {}
    
  • }; */ class Solution { public: bool hasCycle(ListNode *head) { if(head==NULL) return false; ListNode *node=head; int up=10; for(int j=0;j<16;++j){ for(int i=0;i<up;++i){ if(node->next!=NULL){ node=node->next; } else return false; } //check out ListNode test=node; for(int i=0;i<up;++i){ if(node->next!=NULL){ node=node->next; if(node==test) return true; } else return false; } up=2; } return false; } };
全部评论

相关推荐

点赞 评论 收藏
转发
点赞 收藏 评论
分享
牛客网
牛客企业服务