Warning: session_start(): open(/var/lib/php/sessions/sess_7lhcuoj69gd7i246t6h990djok, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!7
p-exp {
new LogNArray a;
int n = 100000;
twice { time {
repeat n { a.add(randomInt()); }
}}
printBenchResult("Adding", n);
twice { time {
for i to n { a.get(i); }
}}
printBenchResult("Accessing in order", n);
twice { time {
for i to n { a.get(random(l(a))); }
}}
printBenchResult("Accessing in random order", n);
twice { time {
repeat n { a.remove(random(l(a))); }
}}
printBenchResult("Removing", n);
}