每日一题(9) - 判断单链表是否有环

题目来自剑指Offer

题目


分析

每日一题(9) - 判断单链表是否有环_第1张图片

代码

bool IsCycle(ListNode* pHead)
{
	assert(pHead != NULL);
	ListNode* pFast = pHead;
	ListNode* pSlow = pHead;
	while (pFast->m_pNext && pFast->m_pNext->m_pNext)
	{
		pFast = pFast->m_pNext->m_pNext;
		pSlow = pSlow->m_pNext;
		if (pFast == pSlow)
		{
			return true;
		}
	}
	return false;
}

测试代码

#include <iostream>
#include <assert.h>
using namespace std;

struct ListNode
{
	int m_Data;
	ListNode* m_pNext;
};


bool IsCycle(ListNode* pHead)
{
	assert(pHead != NULL);
	ListNode* pFast = pHead;
	ListNode* pSlow = pHead;
	while (pFast->m_pNext && pFast->m_pNext->m_pNext)
	{
		pFast = pFast->m_pNext->m_pNext;
		pSlow = pSlow->m_pNext;
		if (pFast == pSlow)
		{
			return true;
		}
	}
	return false;
}

void CreateList(ListNode** pHead,int nLen)//头指针使用指针的指针
{
	assert(*pHead == NULL && nLen > 0);
	ListNode* pCur = NULL;
	ListNode* pNewNode = NULL;
	for (int i = 0;i < nLen;i++)
	{
		pNewNode = new ListNode;
		cin>>pNewNode->m_Data;
		pNewNode->m_pNext = NULL;

		if (*pHead == NULL)
		{
			*pHead = pNewNode;
			pCur = *pHead;
		}
		else
		{
			pCur->m_pNext = pNewNode;
			pCur = pNewNode;
		}
	}
}

/*把链表最后一个结点指向第三个结点*/
void CreateCycle(ListNode* pHead)
{
	assert(pHead);
	ListNode* pLastNode = pHead;
	while (pLastNode->m_pNext)
	{
		pLastNode = pLastNode->m_pNext;
	}
	if (pHead->m_pNext && pHead->m_pNext->m_pNext)
	{
		pLastNode->m_pNext =  pHead->m_pNext->m_pNext;
	}
}


int main()
{
	int nLen = 0;
	bool bIsCircle = false;
	ListNode* pHead = NULL;
	ListNode* pHeadSec = NULL;
	ListNode* pMidNode = NULL;

	cout<<"please input node num: ";
	cin >> nLen;
	CreateList(&pHead,nLen);//注意传参使用引用
	CreateCycle(pHead);
	bIsCircle = IsCycle(pHead);
	if (bIsCircle)
	{
		cout<<"有环!"<<endl;
	}
	else
	{
		cout<<"无环"<<endl;
	}

	cout<<"please input node num: ";
	cin >> nLen;
	CreateList(&pHeadSec,nLen);//注意传参使用引用
	bIsCircle = IsCycle(pHeadSec);
	if (bIsCircle)
	{
		cout<<"有环!"<<endl;
	}
	else
	{
		cout<<"无环"<<endl;
	}
	
	system("pause");
	return 1;
}


你可能感兴趣的:(每日一题(9) - 判断单链表是否有环)