
Hello and thank you for looking at this.

I have released C++ code for a sorting function,
(including it's design, written in pseudo-code)
under the GNU GPL. I am freely releasing this
algorithm for other programmers to use, re-engineer
and develop further.




I have named the sorting algorithm Half-sort,
it has the following features:

It is an in-place sort.
(No extra data space needed.)

It works by "divide and conquer" recursion.
(It is quite like Quick sort.)

It is not stable.
(i.e. It does NOT keep the original order
of identical items in the list.)



Christopher Martin Nash
cm.nash@yahoo.co.uk
http://www.geocities.com/nicemadnicemad
