再学習基礎:C++でクイックソートを書きました


/*
 * 316-quicksort.cpp
 *
 *  Created on: 2020 5 28 
 *      Author: panzhengji
 */

#include
#include

using std::cout;
using std::endl;


void swap(int p_int[], int first , int end){
	int tmp = p_int[end];
	p_int[end]  = p_int[first];
	p_int[first] = tmp;
}

//       
void sort(int p_int[], int start, int end){
	if(!(start