[algogeeks] java question : How can one writes a function in Java that mocks the super() call without using the super keyword?

2012-09-11 Thread bharat b
-- 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 group, send email to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at ht

Re: [algogeeks] Re: Algorithm page

2012-09-11 Thread Wladimir Tavares
http://marathoncode.blogspot.com.br/2012/09/algoritmo-de-kadane.html http://marathoncode.blogspot.com.br/2012/09/algoritmo-de-kadane-2d.html http://marathoncode.blogspot.com.br/2012/08/as-proximas-cinco-linguagens-para-voce.html Wladimir Araujo Tavares *Federal University of CearĂ¡

Re: [algogeeks] Accolite placement papers???

2012-09-11 Thread sandeep kumar
Thnx :) but how do you solve the second question??? -- 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 group, send email to algogeeks+unsubscr...@goog

Re: [algogeeks] Finding top 10 most frequent repeated word

2012-09-11 Thread Navin Kumar
@ashish: what if there is not sufficient memory to build hashmap? On Tue, Sep 11, 2012 at 4:19 PM, bharat b wrote: > but in the question it says that billions of words .. I don't think using > hashmap is good idea .. > > > On Tue, Sep 11, 2012 at 2:34 PM, Ashish Goel wrote: > >> hashmap for word

Re: [algogeeks] Finding top 10 most frequent repeated word

2012-09-11 Thread bharat b
but in the question it says that billions of words .. I don't think using hashmap is good idea .. On Tue, Sep 11, 2012 at 2:34 PM, Ashish Goel wrote: > hashmap for word to count mapping and a heap will have count and > corresponding words (will get updated at run time) > Best Regards > > Ashish

Re: [algogeeks] Finding top 10 most frequent repeated word

2012-09-11 Thread Ashish Goel
hashmap for word to count mapping and a heap will have count and corresponding words (will get updated at run time) Best Regards Ashish Goel "Think positive and find fuel in failure" +919985813081 +919966006652 On Tue, Sep 11, 2012 at 2:07 PM, Navin Kumar wrote: > @ashish: will you use HashMap o

Re: [algogeeks] Finding top 10 most frequent repeated word

2012-09-11 Thread Navin Kumar
@ashish: will you use HashMap or any other mapping technique? please throw some light on map? On Tue, Sep 11, 2012 at 11:09 AM, Ashish Goel wrote: > map + heap for 10 most occurred words.. > external sort for not sufficient memory > if the words are dynamically "added/deleted", the first map+hea