Can this QuickSort work?

  • Thread starter Thread starter RB Smissaert
  • Start date Start date
Yes, had a quick look at the source and saw some functions without code
and at one
stage I thought you were joking about fast and simple code.
Will give it a try.

RBS
 
RB Smissaert said:
OK, are you saying that to sort a 1-D array of long values a counting sort
is
2 to 3 times faster?
Interesting and I will check that out.

For integer values, Counting Sot is by far the fastest,
What I didn't see in your webpage is how the VB6 code was compiled.
Is this with all the fast options such as not checking the array bounds
etc?

I just use the default values for compiles.

My initial concern was to demonstrate how easy it is to outdo the algorithms
used for sorts within Office.
 
Yes, had a quick look at the source and saw some functions without code

That's an interface, it's the fastest way to call a function in a class
without having to know all the details of the class before hand.

Michael
 
Back
Top