for sort in BubbleSort BidirectionalBubbleSort MergeSort InsertionSort HeapSort ShellSort SelectionSort QuickSort QubbleSort FastQuickSort; do
  for dataset in 0 1 2 3 4 5 6 7; do
    for n in 10000 15000 20000; do
      echo $sort $dataset $n > results 2>&1;
    done;
  done;
done;


