I created two projects. One in C++ and one in Java. I did time trials for a QuickSort and SelectionSort for both. Oddly enough I found some very strange behavior.
Here were the results for an array of size 10,000:
SelectionSort Java: 80 ms
SelectionSort C++: 2914 ms
QuickSort Java: 1 ms
QuickSort C++: ~45 seconds
Now call me crazy but I've always been taught that QuickSort is the fastest. This proves to be true in Java yet in C++ it completely gets shut down.
So my question is, does C++ handle QuickSort differently?
I tried to keep the functions the same between languages and they are exactly the same with the exception of using a vector in C++ vs an int array. I'd prefer to use a vector anyway because the actual project I want to use the sort for in C++ requires a vector.
I'm sure it's a dumb mistake or something I'm making but please provide some insight as to why this is happening.
EDIT:
I believe I see what the problem is. Thanks everyone for the extremely fast responses. I'll be modifying my code to work as intended. I knew it was a simple mistake. Also, although the question asked is quite embarrassing, the responses are educational.
Vectorin Java. You're comparing apples to oranges. – Brian Roach May 5 '11 at 17:38