标签:Linked List

leetcode 141. Linked List Cycle

Given a linked list, determine if it has a cycle in it. 本人的code: /** * Definition for singly-linked list. * struct ListNode { *     int val; *     struct ListNode *next; * }; */ bo……