aisd_lab/lab2/zad4/gnuplot/k1/swap_small.gp

12 lines
278 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 "QuickSort", \
"" using 1:5 t "DualPivotQuickSort"
# vim: ft=gnuplot