码迷,mamicode.com
首页 >  
搜索关键字:求单链表是否带环    ( 1个结果
求单链表是否带环,和环长
//带环返回1//不带环返回0intIsCycle(PLinkListpList,PLinkList*ppMeetNode){ Node*fast=pList; Node*slow=pList; while(fast&&fast->next) { slow=slow->next; fast=fast->next->next; if(slow==fast) { *ppMeetNode=slow; return1; } } *ppMeet..
分类:其他好文   时间:2015-08-30 01:13:00    阅读次数:153
1条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!