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

13 lines
304 B
Gnuplot

set title "Average swaps, k = 1, n ∈ {10, 20, ..., 50}"
set style data lines
set xlabel "n"
set ylabel "Average swaps"
set term pdfcairo font "JetBrainsMono-NF,12"
plot "./results/k1/small" \
using 1:3 t "InsertionSort", \
"" using 1:5 t "QuickSort", \
"" using 1:7 t "HybridSort"
# vim: ft=gnuplot