14 lines
306 B
Gnuplot
14 lines
306 B
Gnuplot
set title "Insert n rand, delete n rand - Comp, n ∈ {10000, 20000, ..., 100000}"
|
|
set style data lines
|
|
|
|
set xlabel "n"
|
|
set ylabel "comparisons"
|
|
set term pdfcairo font "JetBrainsMono-NF,12"
|
|
|
|
plot "./results/rand_comp" \
|
|
using 1:2 t "Average", \
|
|
"" using 1:3 t "Max", \
|
|
|
|
set terminal pdf
|
|
|
|
# vim: ft=gnuplot
|