-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathentryofloop.cpp
121 lines (97 loc) · 2.78 KB
/
entryofloop.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// {"category": "List", "notes": "Find entry node of loop"}
#include <SDKDDKVer.h>
#include <stdio.h>
#include <tchar.h>
#include <iostream>
using namespace std;
//------------------------------------------------------------------------------
//
// When there is a loop in a linked list, how do you find the entry node of
// the loop?
//
//------------------------------------------------------------------------------
template<class Object>
class ListNode
{
public:
Object m_object;
ListNode* m_pNext;
ListNode<Object>(Object object, ListNode* pNext = nullptr)
: m_object(object), m_pNext(pNext) {}
};
//------------------------------------------------------------------------------
//
// Implementation
//
//------------------------------------------------------------------------------
template<class Object>
ListNode<Object>* EntryNodeOfLoop(ListNode<Object>* pHead)
{
if (nullptr == pHead)
{
return nullptr;
}
ListNode<Object>* pSlow = pHead->m_pNext;
if (nullptr == pSlow)
{
return nullptr;
}
ListNode<Object>* pFast = pSlow->m_pNext;
while (pSlow != pFast)
{
if (nullptr == pSlow || nullptr == pFast)
{
return nullptr;
}
pSlow = pSlow->m_pNext;
pFast = pFast->m_pNext;
if (pFast != nullptr)
{
pFast = pFast->m_pNext;
}
}
int numberOfNodesInLoop = 1;
while (pSlow->m_pNext != pFast)
{
pSlow = pSlow->m_pNext;
++numberOfNodesInLoop;
}
pSlow = pHead;
for (int i = 0; i < numberOfNodesInLoop; i++)
{
pSlow = pSlow->m_pNext;
}
while (pHead != pSlow)
{
pHead = pHead->m_pNext;
pSlow = pSlow->m_pNext;
}
return pHead;
}
//------------------------------------------------------------------------------
//
// Demo execution
//
//------------------------------------------------------------------------------
int _tmain(int argc, _TCHAR* argv[])
{
ListNode<int>* pNull = nullptr;
ListNode<int>* pEntry = EntryNodeOfLoop(pNull);
if (pEntry) cout << pEntry->m_object; else cout << "(null)"; cout << endl;
ListNode<int> node(1);
node.m_pNext = &node;
pEntry = EntryNodeOfLoop(&node);
if (pEntry) cout << pEntry->m_object; else cout << "(null)"; cout << endl;
ListNode<int> node6(6);
ListNode<int> node5(5, &node6);
ListNode<int> node4(4, &node5);
ListNode<int> node3(3, &node4);
ListNode<int> node2(2, &node3);
ListNode<int> node1(1, &node2);
pEntry = EntryNodeOfLoop(&node1);
if (pEntry) cout << pEntry->m_object; else cout << "(null)"; cout << endl;
node6.m_pNext = &node3;
pEntry = EntryNodeOfLoop(&node1);
if (pEntry) cout << pEntry->m_object; else cout << "(null)"; cout << endl;
return 0;
}