15 lines
304 B
Text
15 lines
304 B
Text
|
set title "Insert n asc, 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/asc_comp" \
|
||
|
using 1:2 t "Average", \
|
||
|
"" using 1:3 t "Max", \
|
||
|
|
||
|
set terminal pdf
|
||
|
|
||
|
# vim: ft=gnuplot
|