[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: Try this ..

2006-08-25 Thread Kamlesh
I didnt understand what you mean. Please clarify. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks@googlegroups.com To unsubscribe from this

[algogeeks] MineSweeper...

2006-08-25 Thread Iman
today i was solving this problem http://acm.uva.es/p/v101/10189.html and i after i solve it i compile it with Microsoft Visual Studio 6 and i've got the results correct but after i send it to Valladolid judge it say it has a compiler error!!! o my god anyway need your helps tanx in advance --

[algogeeks] Re: MineSweeper...

2006-08-25 Thread Prunthaban Kanthakumar
I didn't look into thecorrectness of the algorithm. But I can tell you the reason for that compilation error Visual Studio 6.0 does not follow ANSI standards! Especially the scope of the loop variable 'i' is the thing which causes compilation error for you. In ANSI C (or gcc for that matter), if