Hi !!!
This is an algorithmn to quicksort an array on n numbers
Quicksort(Array A, first, last)
{
middle=lowerbound(first+last/2);
Quicksort(A,first, middle);
Quicksort(A, middle+1, last);
}
post an iterative solution to it....
Wednesday, November 18, 2009
Subscribe to:
Post Comments (Atom)

No comments:
Post a Comment