aisd_lab/lab2/zad3/gnuplot/k100/comp_large_n.gp

13 lines
297 B
Text
Raw Permalink Normal View History

set title "Average comparisons / n, k = 100, n ∈ {1000, 2000, ..., 50000}"
set style data lines
set xlabel "n"
set ylabel "Average comparisons / n"
set term pdfcairo font "JetBrainsMono-NF,12"
plot "./results/k100/large" \
using 1:6 t "MergeSort", \
"" using 1:8 t "MySort"
# vim: ft=gnuplot