劍指offer--鏈表環入口結點

struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; class Solution { public: ListNode* EntryNodeOfLoop(ListNode* pHead) { if (pHead == NULL) return NU
相關文章
相關標籤/搜索