13 lines
304 B
Gnuplot
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
|