鏈表環的問題

1.判斷鏈表是否有環: while(fast!=slow){ if(fast.next!=nullptr && fast.next.next!=nullptr){ fast=fast->next->next; slow=slow->next; }else{
相關文章
相關標籤/搜索