-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench.sort.js
287 lines (257 loc) · 6.47 KB
/
bench.sort.js
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
var Benchmark = require('benchmark')
var suite = new Benchmark.Suite('Couting magazine')
const chalk = require('chalk')
/**
================= START
*/
console.log('------ prepare data')
let total = 10000000 // 10 million
const arr = [6, 5, 7, 3, 1, 8, 7, 2, 4, 234, 34,234, 3224,234, 324,234 ,234,234,434 ,235,34656,566, 5, 7, 3, 1, 8, 7, 2, 4, 234, 34,234, 3224,234, 324,234 ,234,234,434 ,235,34656,566, 5, 7, 3, 1, 8, 7, 2, 4, 234, 34,234, 3224,234, 324,234 ,234,234,434 ,235,34656,56,6, 5, 7, 3, 1, 8, 7, 2, 4, 234, 34,234, 3224,234, 324,234 ,234,234,434 ,235,34656,56,6, 5, 7, 3, 1, 8, 7, 2, 4, 234, 34,234, 3224,234, 324,234 ,234,234,434 ,235,34656,56,6, 5, 7, 3, 1, 8, 7, 2, 4, 234, 34,234, 3224,234, 324,234 ,234,234,434 ,235,34656,56,6, 5, 7, 3, 1, 8, 7, 2, 4, 234, 34,234, 3224,234, 324,234 ,234,234,434 ,235,34656,56]
for (let x = 0; x <= total; x++) {
// magazine = `${magazine} ${Math.random().toString(36).substring(7)}`
}
console.log('------ starting perf')
/* function swap(items, leftIndex, rightIndex) {
var temp = items[leftIndex];
items[leftIndex] = items[rightIndex];
items[rightIndex] = temp;
}
function partition(items, left, right) {
var pivot = items[Math.floor((right + left) / 2)], //middle element
leftIndex = left, //left pointer
rightIndex = right; //right pointer
while (leftIndex <= rightIndex) {
while (items[leftIndex] < pivot) {
leftIndex++;
}
while (items[rightIndex] > pivot) {
rightIndex--;
}
if (leftIndex <= rightIndex) {
swap(items, leftIndex, rightIndex); //sawpping two elements
leftIndex++;
rightIndex--;
}
}
return leftIndex;
}
function quickSort(items, left, right) {
var index;
if (items.length > 1) {
index = partition(items, left, right); //index returned from partition
if (left < index - 1) { //more elements on the left side of the pivot
quickSort(items, left, index - 1);
}
if (index < right) { //more elements on the right side of the pivot
quickSort(items, index, right);
}
}
return items;
}
return */
// add tests
suite
.add('native sort', function () {
function sortClients(arr) {
return arr.sort( (a,b) => (a - b))
}
sortClients(arr)
})
.add('heap sort', function () {
function heapSort(arr){
let m = arr.length;
for(let index = Math.floor(m/2) - 1 ; index >= 0; index--){
max_heapify(arr,index,m); //Building max heap
}
for(let index = m-1;index>=0;index--){
swap(arr,0,index); //Deleting root element
max_heapify(arr,0,index); //Building max heap again
}
return arr;
}
function max_heapify(arr,index,m){
let left = 2*index; //Left child index
let right = 2*index+1; //Right child index
let maximum;
if (right < m) { //Checks if right child exist
if (arr[left] >= arr[right]) { //Compares children to find maximum
maximum = left;
}
else {
maximum = right;
}
}
else if (left < m) { //Checks if left child exists
maximum = left;
}
else {
return //In case of no children return
}
if(arr[index] < arr[maximum]){ //Checks if the largest child is greater than parent
swap(arr, index, maximum); //If it is then swap both
max_heapify(arr, maximum, m); //max-heapify again
}
return;
}
function swap(arr,index,index2){ //Swap function
let temp;
temp = arr[index];
arr[index] = arr[index2];
arr[index2]=temp;
}
heapSort(arr)
})
// add listeners
.on('cycle', function (event) {
console.log(chalk.magenta(String(event.target)))
})
.on('complete', function () {
// console.log(this.filter('fastest'))
const fastest = this.filter('fastest')
console.log(chalk.green('Fastest is ' + fastest.map('name')))
function compare(a, b) {
if (a > b)
return (a / b * 100).toFixed() + '% faster';
if (a == b)
return "the same";
return (b / a * 100).toFixed() + '% slower';
}
console.log(chalk.blue(`${this[0].name} is ${compare(fastest.map('hz'), this[1].hz)} than ${this[1].name}`));
})
// run async
.run({ async: true })
/*
Trie tree
{
"root": {
"isLastChar": false,
"wordCount": 0,
"t": {
"o": {
"m": {
"o": {
"r": {
"r": {
"o": {
"w": {
"wordCount": 1,
"isLastChar": true
}
}
}
}
}
},
"wordCount": 1,
"isLastChar": true
}
},
"a": {
"wordCount": 1,
"isLastChar": true
},
"l": {
"o": {
"t": {
"wordCount": 1,
"isLastChar": true
}
},
"i": {
"k": {
"e": {
"wordCount": 1,
"isLastChar": true
}
}
}
},
"o": {
"f": {
"wordCount": 1,
"isLastChar": true
}
},
"c": {
"o": {
"f": {
"f": {
"e": {
"e": {
"wordCount": 2,
"isLastChar": true
}
}
}
}
},
"a": {
"n": {
"d": {
"i": {
"e": {
"s": {
"wordCount": 1,
"isLastChar": true
}
}
}
}
}
}
},
"w": {
"i": {
"l": {
"l": {
"wordCount": 1,
"isLastChar": true
}
}
}
},
"b": {
"e": {
"wordCount": 1,
"isLastChar": true
},
"o": {
"u": {
"g": {
"h": {
"t": {
"wordCount": 1,
"isLastChar": true
}
}
}
}
}
},
"d": {
"o": {
"wordCount": 1,
"isLastChar": true
},
"r": {
"i": {
"n": {
"k": {
"wordCount": 1,
"isLastChar": true
}
}
}
}
},
"y": {
"o": {
"u": {
"wordCount": 1,
"isLastChar": true
}
}
}
}
}
*/