Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python
C++
JAVA
PHP
SQL

Assignments


QuickSortProject


PQuick.cpp

#include<omp.h>

#include "PQuick.h"
#include "standardSortAlgorithms.h"
#include "betterQuick.h"
#include "util.h"

//-------------------------------------------------------------------------
void p_quick_sort_wrapper(int *A,int n, int threads) {
	// Get the OMP stuff started and make an initial call
	// to your sorting algorithm, which I recommend you call
	// p_quick_sort
	
	// For now it just calls the better version of quick_sort
	better_quick_sort_wrapper(A,n,threads);
}
//-------------------------------------------------------------------------