Merge Sort Algorithm

Published by Igor Khrupin on

Basics

Merge Sort is a divide and conquer algorithm.

The algorithm is based on the principle that a one-element algorithm is sorted a priori.

The algorithm starts by recursively dividing the list into smaller ones. This process is called “partitioning”. This continues until the length of the sublists becomes 1.

Next, the elements of the list are merged with a simultaneous comparison of the elements. This process is called “merging”.

The video below explains well how the algorithm works.

This diagram shows how the algorithm works on the example of the list

[10, 5, 7, 4, 1, 2, 5, 18]

Sample code

Below you will get a link to GitHub repo with Kotlin, Java, and Python source code

Download it from github

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.