If possible, how can I improve the following quick sort(performance wise). Any suggestions?
void main() { quick(a,0,n-1); } void quick(i
completely dumb answer, but... compile your code in release mode and turn on optimizations !