aisd_lab/lab2/zad3/gnuplot/k1/comp_small_n.gp

12 lines
286 B
Gnuplot

set title "Average comparisons / n, k = 1, n ∈ {10, 20, ..., 50}"
set style data lines
set xlabel "n"
set ylabel "Average comparisons / n"
set term pdfcairo font "JetBrainsMono-NF,12"
plot "./results/k1/small" \
using 1:6 t "MergeSort", \
"" using 1:8 t "MySort"
# vim: ft=gnuplot