-判斷鏈表是否帶環?若帶環求環的長度?若帶環求環的入口點

1.鏈表是否有環 /* struct ListNode {     int val;     struct ListNode *next;     ListNode(int x) :         val(x), next(NULL) {     } }; */ class Solution { public:     bool EntryNodeOfLoop(ListNode* pHead)
相關文章
相關標籤/搜索