Skip to content

Instantly share code, notes, and snippets.

@byCodeXp
byCodeXp / qs.cpp
Created August 2, 2020 10:34 — forked from raarce/qs.cpp
quicksort (recursive implementation)
// Quick Sort in c++
// Modified from http://www.snippets.24bytes.com/2010/06/quick-sort.html
#include <iostream> // ostream
#include <vector>
#define SIZE 10
using namespace std;