This repository has been archived by the owner on Jul 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.cpp
executable file
·134 lines (114 loc) · 2.82 KB
/
list.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
122
123
124
125
126
127
128
129
130
131
132
133
134
#include <iostream>
using namespace std;
class LinkedList; // pre-declaration
class Node {
friend class LinkedList;
int value;
Node* next;
public:
Node() {next = 0;}
void setValue(int iVal) { this->value=iVal; }
};
class LinkedList {
Node* head;
int iSize;
public:
LinkedList() { head = 0; }
// assumes that the head node is a blank node (this is to avoid boundary conditions related to replacing
// the head node in cases where newElement->value < head->value)
// assumes that newElement is a valid heap-allocated instance (i.e. takes ownership
// of the passed-in Node instead of making a copy of it)
bool addElement(Node *newElement)
{
assert(newElement);
if (head==0) {
head=new Node();
head->value=INT_MIN;
head->next=newElement;
head->next->next=0;
iSize=1;
return false;
}
else {
Node *current=head;
Node *prev=head;
bool bInserted=false;
while (current) {
if (current->value < newElement->value) {
prev=current;
current=current->next;
}
else { // insertion point found (insert before)
prev->next=newElement;
newElement->next=current;
bInserted=true;
break;
} // found insertion point
} // loop over existing nodes
// handle case where no existing node in list is >= newElement
if (!bInserted) {
prev->next=newElement;
newElement->next=0;
}
++iSize;
return true;
}
} // addElement
bool deleteNthLargestElement(int N)
{
if (N>=iSize) return false;
int i=0;
Node *current=head ? head->next : 0;
Node *prev=current;
while (current) {
if (i < N) {
prev=current;
current=current->next;
++i;
}
else {
if (current->next==0) {
prev->next=0;
delete current;
}
else {
Node *deleted=current;
prev->next=current->next;
delete deleted;
}
--iSize;
return true;
}
} // loop over nodes
}
void printAll()
{
Node *current= head ? head->next : 0;
cout << "size " << iSize << " start ";
while (current) {
cout << current->value << " ";
current=current->next;
}
cout << "end" << endl;
}
};
int main(void)
{
LinkedList lst;
Node *tmp=new Node();
tmp->setValue(4);
lst.addElement(tmp);
tmp=new Node();
tmp->setValue(2);
lst.addElement(tmp);
tmp=new Node();
tmp->setValue(2);
lst.addElement(tmp);
tmp=new Node();
tmp->setValue(6);
lst.addElement(tmp);
lst.printAll();
lst.deleteNthLargestElement(2);
lst.printAll();
return 0;
}