-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cpp
238 lines (200 loc) · 7.43 KB
/
test.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#define SLIST_DEBUG_ALLOCATIONS 1
#include "slist.hpp"
#include <iostream>
#include <string>
#include <vector>
#include <initializer_list>
#include <chrono>
#include <list>
using namespace std;
string int_to_string(int x) { return to_string(x); }
string intpair_to_string(pair<int,int> x) {
return "(" + to_string(x.first) +"," + to_string(x.second) + ")";
}
string double_to_string(double x) { return to_string(x); }
using namespace Slist;
void test () {
cout << "Hello world" << endl;
/*
slist<int> x;
cout << "x Default slist size = " << x.size() << ", uniq=" << x.uniq() << endl;
auto y = x;
cout << "y Copy slist size = " << x.size() << ", uniq=" << x.uniq() << endl;
x = cons (42,x);
cout << "x Cons size = " << x.size() << ", uniq=" << x.uniq() << endl;
y = x;
cout << " y = " << str (int_to_string,y) << endl;
cout << "x Cons size = " << x.size() << ", uniq=" << x.uniq() << endl;
cout << "y Cons size = " << y.size() << ", uniq=" << y.uniq() << endl;
*/
auto x = slist<int>();
cout << "concat by cons test" << endl;
x = cons(1,cons(2,cons(3,slist<int>())));
cout << "x Cons size = " << x.size() << ", uniq=" << x.uniq() << endl;
cout << "Forward= " << str (int_to_string,x) << endl;
x = rev (x);
cout << "x Cons size = " << x.size() << ", uniq=" << x.uniq() << endl;
cout << "Reversed = " << str (int_to_string,x) << endl;
x = rev (std::move(x)); // in place reversal
cout << "Reversed again inplace = " << str (int_to_string,x) << endl;
/*
auto z = join (x,y);
cout << " z = x join y = " << str (int_to_string,z) << endl;
auto z2 = x + y;
cout << " z2 = x + y = " << str (int_to_string,z2) << endl;
auto z3 = 99 + z2;
cout << " z3 = 99 + z2 = " << str (int_to_string,z3) << endl;
auto k = copy (z);
cout << " k = copy z " << str (int_to_string,k) << endl;
cout << " Iterator ";
for (auto it = z.begin(); !(it == z.end()); ++it) cout << *it << ", ";
cout << endl;
cout << "Container "; for (auto v : k) cout << v << ","; cout << endl;
auto vec = vector<int>();
vec.push_back(11);
vec.push_back(12);
vec.push_back(13);
vec.push_back(14);
auto lfv = slist_from_container(vec);
cout << "List from Vector " << str (int_to_string, lfv) << endl;
auto linit = slist({1,3,5,7});
cout << "List from initialiser list " << str (int_to_string, linit) << endl;
auto lfi = slist_from_iterators<int>(vec.begin(), vec.end());
cout << "List from iterators" << str (int_to_string, lfi) << endl;
auto filtered = lfi.filter ([] (int x) { return x % 2 == 0; });
cout << "filtered " << str (int_to_string, filtered) << endl;
auto filtered2= filter (lfi,[] (int x) { return x % 2 == 0; });
cout << "filtered " << str (int_to_string, filtered2) << endl;
auto mapped0 = lfi.map ([] (int x) { return x*x; });
cout << "mapped int->int " << str (int_to_string, mapped0) << endl;
auto mapped = lfi.map ([] (int x) { return double(x) + 0.1; });
cout << "mapped int->double " << str (double_to_string, mapped) << endl;
auto mapped2 = map(lfi,[] (int x) { return double(x) + 0.1; });
cout << "mapped " << str (double_to_string, mapped2) << endl;
auto zipped = zip(lfv,filtered2);
cout << "zipped " << str (intpair_to_string, zipped) << endl;
auto uz = unzip(zipped);
cout << "unzipped first " << str (int_to_string, uz.first) << endl;
cout << "unzipped second " << str (int_to_string, uz.second) << endl;
slist<int> xx;
auto px = xx.get_back_inserter();
for (int i = 14; i < 20; ++i) *px++ = i;
cout << "From output iterator " << str (int_to_string, xx) << endl;
px = xx.get_back_inserter();
for (int i = 14; i < 20; ++i) *px++ = i;
cout << "From output iterator(should append) " << str (int_to_string, xx) << endl;
auto cbi1 = slist({1,2,3});
auto cbi2 = cbi1;
px = cbi2.get_back_inserter();
for (int i = 14; i < 20; ++i) *px++ = i;
cout << "cbi1 " << str (int_to_string, cbi1) << endl;
cout << "cbi2 " << str (int_to_string, cbi2) << endl;
auto pb = slist<int>();
pb.push_back(3).push_back(4).push_back(5).push_front(2).push_front(1);
cout << "push/back/front" << str (int_to_string, pb) << endl;
auto sum = fold_left ([](int x, int y) { return x + y;},0,xx);
cout << "Sum of last = " << sum << endl;
*/
}
slist<int> slist3M () {
slist<int> s;
auto it = s.get_back_inserter();
for (int j = 1; j<3'000'000; ++ j) *it = j;
return s;
}
void stime3M () {
auto start = chrono::steady_clock::now();
{
auto x = slist3M();
auto end = chrono::steady_clock::now();
double elapsed = double (chrono::duration_cast<chrono::microseconds>(end - start).count()) / 1e6;
cout << "slist<int> 3M elts: Construction time : " << elapsed << "s" << endl;
start = chrono::steady_clock::now();
}
auto end = chrono::steady_clock::now();
double elapsed = double (chrono::duration_cast<chrono::microseconds>(end - start).count()) / 1e6;
cout << "slist<int> 3M elts: Destruction time : " << elapsed << "s" << endl;
}
list<int> list3M () {
list<int> s;
auto it = back_inserter(s);
for (int j = 1; j<3'000'000; ++ j) *it++ = j;
return s;
}
void time3M () {
auto start = chrono::steady_clock::now();
{
auto x = list3M();
auto end = chrono::steady_clock::now();
double elapsed = double (chrono::duration_cast<chrono::microseconds>(end - start).count()) / 1e6;
cout << "list<int> 3M elts: Construction time : " << elapsed << "s" << endl;
start = chrono::steady_clock::now();
}
auto end = chrono::steady_clock::now();
double elapsed = double (chrono::duration_cast<chrono::microseconds>(end - start).count()) / 1e6;
cout << "list<int> 3M elts: Destruction time : " << elapsed << "s" << endl;
}
double scopyandprepend1() {
auto x = slist3M();
auto start = chrono::steady_clock::now();
auto y = x;
x.push_front(-1);
y.push_front(-2);
auto a = x.head();
auto b = y.head();
assert(a == -1);
assert(b == -2);
auto end = chrono::steady_clock::now();
double elapsed = double (chrono::duration_cast<chrono::microseconds>(end - start).count()) / 1e6;
return elapsed;
}
double copyandprepend1() {
auto x = list3M();
auto start = chrono::steady_clock::now();
auto y = x;
x.push_front(-1);
y.push_front(-2);
auto a = *(x.begin());
auto b = *(y.begin());
assert(a == -1);
assert(b == -2);
auto end = chrono::steady_clock::now();
double elapsed = double (chrono::duration_cast<chrono::microseconds>(end - start).count()) / 1e6;
return elapsed;
}
double scopyandappend1() {
auto x = slist3M();
auto start = chrono::steady_clock::now();
auto y = x;
x.push_back(-1);
y.push_back(-2);
auto end = chrono::steady_clock::now();
double elapsed = double (chrono::duration_cast<chrono::microseconds>(end - start).count()) / 1e6;
return elapsed;
}
double copyandappend1() {
auto x = list3M();
auto start = chrono::steady_clock::now();
auto y = x;
x.push_back(-1);
y.push_back(-2);
auto end = chrono::steady_clock::now();
double elapsed = double (chrono::duration_cast<chrono::microseconds>(end - start).count()) / 1e6;
return elapsed;
}
void time(string desc, double (*f)())
{
auto elapsed = f();
cout << desc << " : " << elapsed << "s" << endl;
}
int main() {
test();
stime3M();
time3M();
time("Slist copy and prepend each", scopyandprepend1);
time("List copy and prepend each", copyandprepend1);
time("Slist copy and append each", scopyandappend1);
time("List copy and append each", copyandappend1);
cout << "Allocated nodes on exit = " << get_nalloc() << endl;
assert (get_nalloc() == 0);
}