/** * 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) { int sum=0;//题目中说了n的范围是0到10000,所以如果循环次数大...