摘要: 快慢指针 LeetCode 141.环形链表 class Solution { public: bool hasCycle(ListNode *head) { ListNode* slow=head; ListNode* fast=head; while((fast!=NULL)&&(fast->n 阅读全文
posted @ 2021-06-10 14:44 niu_a 阅读(21) 评论(0) 推荐(0) 编辑