Skip to content

Instantly share code, notes, and snippets.

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

Kris Mulyandani P. krismp

🏠
Working from home
View GitHub Profile
@krismp
krismp / quicksort.c
Created March 13, 2019 05:44
Non randomized quicksort
/* C implementation QuickSort */
#include<stdio.h>
// A utility function to swap two elements
void swap(int* a, int* b)
{
int t = *a;
*a = *b;
*b = t;
}