This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; |