/** * 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) { ListNode* fast = head; ListNode* low = head; ...