-
Notifications
You must be signed in to change notification settings - Fork 253
/
list.cpp
143 lines (105 loc) · 2.98 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
135
136
137
138
139
140
141
142
#include "list.h"
#include "my_data.h"
void createList(List &L) {
/**
* FS : set first(L) and last(L) with Null
*/
//-------------your code here-------------
your code here
//----------------------------------------
}
address allocate(infotype x) {
/**
* FS : return new list element with info = x and next element is Null
*/
address P;
//-------------your code here-------------
your code here
//----------------------------------------
return P;
}
void deallocate(address &P) {
/**
* FS : delete element pointed by P
*/
//-------------your code here-------------
your code here
//----------------------------------------
}
void insertFirst(List &L, address P) {
/**
* IS : List L may be empty
* FS : element pointed by P became the first element in List L
*/
//-------------your code here-------------
your code here
//----------------------------------------
}
void insertLast(List &L, address P) {
/**
* IS : List L may be empty
* FS : element pointed by P became the last element in List L
*/
//-------------your code here-------------
your code here
//----------------------------------------
}
address findElm(List L, infotype x) {
/**
* IS : List L may be empty
* FS : returns element with info.ID = x.ID,
return Null if such ID is not found
*/
address P;
//-------------your code here-------------
your code here
//----------------------------------------
return P;
}
void deleteFirst(List &L, address &P) {
/**
* IS : List L may be empty
* FS : first element in List L is removed and is pointed by P
*/
//-------------your code here-------------
your code here
//----------------------------------------
}
void deleteLast(List &L, address &P) {
/**
* IS : List L may be empty
* FS : last element in List L is removed and is pointed by P
*/
//-------------your code here-------------
your code here
//----------------------------------------
}
void printInfo(List L) {
/**
* FS : view info of all element inside List L,
* call the view_data function from my_data.h to print the info
*/
//-------------your code here-------------
your code here
//----------------------------------------
}
void insertAfter(List &L, address Prec, address P) {
/**
* IS : Prec and P is not NULL
* FS : element pointed by P is placed behind the element
* pointed by pointer Prec
*/
//-------------your code here-------------
your code here
//----------------------------------------
}
void deleteAfter(List &L, address Prec, address &P) {
/**
* IS : Prec is not NULL
* FS : element which was before behind an element pointed by Prec
* is removed and pointed by pointer P
*/
//-------------your code here-------------
your code here
//----------------------------------------
}