Merge Sort

What is Merge Sort?

Bubble sort is a sorting algorithm, which arranges elements present in an array in specific order such as ascending or descending.

Characteristics of Merge sort

  • In place: Yes

  • Stable: Yes

Java Implementation of Merge sort