Skip to content

Instantly share code, notes, and snippets.

View kenankartal's full-sized avatar
🏠
Working from home

Kenan Kartal kenankartal

🏠
Working from home
View GitHub Profile
@kenankartal
kenankartal / merge_sort.c
Created May 9, 2018 21:22 — forked from mbalayil/merge_sort.c
Merge Sort using recursion in C
/**
* Divide : Divide the n-element array into two n/2-element
* sub-arrays
* Conquer : Sort the two sub-arrays recursively using
* merge sort
* Combine : Merge the two sorted subsequences to form the
* sorted array
**/
#include<stdio.h>