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