SC2001-Sorting Algorithms

Program Features:

  1. Merge-Insertion Sort
  • Combines insertion and merge sort together. When size of array <= S, perform insertion, otherwise, perform merge sort.
  1. Merge Sort