13 lines
316 B
Gnuplot
13 lines
316 B
Gnuplot
set title "Average comparisons, k = 1, n ∈ {10, 20, ..., 50}"
|
|
set style data lines
|
|
|
|
set xlabel "n"
|
|
set ylabel "Average comparisons"
|
|
set term pdfcairo font "JetBrainsMono-NF,12"
|
|
|
|
plot "./results/k1/small" \
|
|
using 1:2 t "InsertionSort", \
|
|
"" using 1:4 t "QuickSort", \
|
|
"" using 1:6 t "HybridSort"
|
|
|
|
# vim: ft=gnuplot
|