13 lines
318 B
Gnuplot
13 lines
318 B
Gnuplot
set title "Average swaps / n, k = 100, n ∈ {10, 20, ..., 50}"
|
|
set style data lines
|
|
|
|
set xlabel "n"
|
|
set ylabel "Average swaps / n"
|
|
set term pdfcairo font "JetBrainsMono-NF,12"
|
|
|
|
plot "./results/k100/small" \
|
|
using 1:9 t "InsertionSort", \
|
|
"" using 1:11 t "QuickSort", \
|
|
"" using 1:13 t "HybridSort"
|
|
|
|
# vim: ft=gnuplot
|