aisd_lab/lab2/zad2/gnuplot/k1/swap_large.gp

13 lines
277 B
Text
Raw Normal View History

2024-04-09 18:07:00 +02:00
set title "Average swaps, k = 1, n ∈ {1000, 2000, ..., 50000}"
set style data lines
set xlabel "n"
set ylabel "Average swaps"
set term pdfcairo font "JetBrainsMono-NF,12"
plot "./results/k1/large" \
using 1:3 t "QuickSort", \
"" using 1:5 t "HybridSort"
2024-04-09 18:07:00 +02:00
# vim: ft=gnuplot