[algogeeks] Re: Quicksort duplicates

2006-08-26 Thread Amal
Actually Iam not sure if it might help .. There is a sorting mechanism called introsort which is used in the Standard Template library of C++ . Try that too .. its a combination of Quick sort and Merge sort I guess. Amal.On 8/25/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:3-way quicksort -

[algogeeks] Re: Quicksort duplicates

2006-08-25 Thread [EMAIL PROTECTED]
3-way quicksort - never heard of that before. I must do some independent learning. Thank you both for your comments/experiences. I appreciate your feedback. Al. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[algogeeks] Re: Quicksort duplicates

2006-08-24 Thread adak
[EMAIL PROTECTED] wrote: Hi, Hope that you can help me with this one. Relative to what I have read Quicksort it is a very good sorting algorithm. However, there can be trouble if there is a high level of duplicates. I have 2 questions based upon this Q1: Can anyone recommend

[algogeeks] Re: Quicksort duplicates

2006-08-24 Thread Googmeister
[EMAIL PROTECTED] wrote: Hi, Hope that you can help me with this one. Relative to what I have read Quicksort it is a very good sorting algorithm. However, there can be trouble if there is a high level of duplicates. I have 2 questions based upon this Q1: Can anyone recommend