ck0712

Results 1 issues of ck0712

def MeetingNode(self, pHead): if not pHead: return None pSlow = pHead.next #定义一个慢指针2 pFast = pSlow.next#定义一个快指针3 while pSlow != pFast : #判断快慢指针是否相等 pSlow = pSlow.next pFast=pFast.next.next if pFast==None: break return pSlow,pFast...