aisd_lab/lab2/zad2/gnuplot/k1/comp_small.gp
2024-04-08 23:30:47 +02:00

12 lines
270 B
Gnuplot

set title "Average comparisons, k = 1, n in {10, 20, ..., 50}"
set style data lines
set xlabel "n"
set ylabel "Average comparisons"
plot "./results/k1/small" \
using 1:2 t "InsertionSort", \
"" using 1:4 t "QuickSort", \
"" using 1:6 t "HybridSort"
# vim: ft=gnuplot