leetcode141
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode141相关的知识,希望对你有一定的参考价值。
/** * Definition for singly-linked list. * public class ListNode { * public int val; * public ListNode next; * public ListNode(int x) { * val = x; * next = null; * } * } */ public class Solution { public bool HasCycle(ListNode head) { //if (head == null) //{ // return false; //} //else //{ // var temp = head; // while (head.next != null) // { // var cur = head.next; // if (temp == cur) // { // return true; // } // else // { // head = head.next; // } // } // return false; //} if (head == null) return false; ListNode walker = head; ListNode runner = head; while (runner.next != null && runner.next.next != null) { walker = walker.next; runner = runner.next.next; if (walker == runner) return true; } return false; } }
https://leetcode.com/problems/linked-list-cycle/#/description
以上是关于leetcode141的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode141 Linked List Cycle. LeetCode142 Linked List Cycle II