kilban13 / merge_sort

Merg sort

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

merge_sort

Merg sort C programming code with data structure

Merge Sort

The basic steps of a d&c algorithm can be boiled down to these three steps:

Divide and break up the problem into the smallest possible “subproblem”, of the exact same type.

Conquer and tackle the smallest subproblems first. Once you’ve figured out a solution that works, use that exact same technique to solve the larger subproblems — in other words, solve the subproblems recursively.

Combine the answers and build up the smaller subproblems until you finally end up applying the same solution to the larger, more complicated problem that you started off with!





Resources


The ins and out of merge sort

About

Merg sort


Languages

Language:C 100.0%