Sorting Analysis

Hypothesis

Is Recursive sorting algorithm ( like merge sort, quick sort) faster?

Experimentation

      This Sorting analysis tool helps us answer questions like mentioned above.Sample input / output to sort 20 random numbers (graphical representation given below)

      Sorting 2000 numbers ( Graphical representation of time taken, number of comparisons and number of swaps across various sorting algorithms)

Conclusion

Recursive sorting algorithm is faster than regular sorting algorithm for larger numbers.