13 lines
330 B
Gnuplot
13 lines
330 B
Gnuplot
set title "Average comparisons / n, k = 100, 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/k100/small" \
|
|
using 1:8 t "InsertionSort", \
|
|
"" using 1:10 t "QuickSort", \
|
|
"" using 1:12 t "HybridSort"
|
|
|
|
# vim: ft=gnuplot
|