Tag algorithms

Types of Algorithms

Types of Algorithms

The sequence of steps we need to take to solve a particular problem is known as an algorithm. There are so many algorithms in computer science that fall under the categories of different types of algorithms. So, if you want…

Merge Sort using Python

Merge Sort using Python

To sort an array we need to arrange the elements of the array by comparing each element efficiently. The merge sort algorithm uses the divide and conquer approach to sort an array by making the least number of comparisons between…