aisd_lab/lab2/zad2/gnuplot/k100/comp_small.gp
2024-04-09 18:07:00 +02:00

13 lines
320 B
Gnuplot

set title "Average comparisons, k = 100, n ∈ {10, 20, ..., 50}"
set style data lines
set xlabel "n"
set ylabel "Average comparisons"
set term pdfcairo font "JetBrainsMono-NF,12"
plot "./results/k100/small" \
using 1:2 t "InsertionSort", \
"" using 1:4 t "QuickSort", \
"" using 1:6 t "HybridSort"
# vim: ft=gnuplot