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

13 lines
326 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:8 t "InsertionSort", \
"" using 1:10 t "QuickSort", \
"" using 1:12 t "HybridSort"
# vim: ft=gnuplot