Quick Sort using Templates #include #include #include template void quick(T *n,int low,int high) { int pos; if(low int split(T *n,int low,int high) { int pos,left,right; T item,t; item=n[low]; left=low; right=high; while(leftitem) right=right-1; while((left