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