长度最多n就是10000次,那就后移10000次,看看head在这期间是否指到NULL了,指到了就是没环

#include <stdbool.h> /**

  • struct ListNode {
  • int val;
  • struct ListNode *next;
  • };
  • C语言声明定义全局变量请加上static,防止重复定义 */

/** *

  • @param head ListNode类
  • @return bool布尔型 / bool hasCycle(struct ListNode head ) { // write code here int max = 10000; while(max) { if(head == NULL) { return false; } head = head->next; max--; } return true; }