-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQ2.cpp
More file actions
77 lines (51 loc) · 1.32 KB
/
Q2.cpp
File metadata and controls
77 lines (51 loc) · 1.32 KB
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
#include <iostream>
#include "LinkedList.h"
//include other files as needed
//
using namespace std;
//Put UniqueList class here
//
class UniqueList: public LinkedList<int>{
public :
void insert(int x){
int result=0;
Node<int> * curr = this->head;
while(curr != NULL) {
if(curr->element == x) {
return;
}
curr = curr->next;
}
this->addLast(x);
}
};
int main()
{
//Uncomment once UniqueList class is created
//DO NOT modify the test code
UniqueList myList;
//attempts to insert each integer from 0 to 49 twice
for(int i = 0; i < 100; i++){
myList.insert(i/2);
}
//checking inserted elements
if(myList.getSize() > 50){
cout << "Error: Inserted too many numbers."
<< " You should insert only if x does not already exist!\n";
return -1;
} else if(myList.getSize() < 50){
cout << "Error: Inserted too few numbers.\n";
return -1;
}
for(int i = 0; i < 50; i++){
int next;
if((next = myList.removeFirst()) != i){
cout << "Error: Encountered " << next << " when expecting " << i << "!\n";
return -1;
}
}
cout << "Insert function has passed the test!\n";
// Put the additional test code here if needed
//
return 0;
}