[algogeeks] Happy Valentines Day Indian Tamil Actress First Night Video Clips & INdian Masala Clips Kiss Image Bed sex Image

2008-02-13 Thread mera kannan
Actress Hot Image Bed Hot SexSex Hot Actress Image Actress Hot VideoActress Kiss Image http://indi

[algogeeks] Re: Stortest Subtext Problem

2008-02-13 Thread arun
oh, even this one will fail :) this will find the smallest subtext up to the first occurrence of the event that all the keyword are found. e.g A A A B B A A C A B C will report B A A C as smallest subtext but A B C is the smallest subtext. --~--~-~--~~~---~--~~ Yo

[algogeeks] Re: Stortest Subtext Problem

2008-02-13 Thread arun
Yes Dave, you are right. I hope algorithm below will work. maintain a hash table with keys as the set of keywords and values as a boolean value initialized with false. initialize a counter count with 0 let n be the total number of keywords. word = 1st word of the text while( word ) { stack1.push

[algogeeks] Free Access your MP3 music online,2 GB For Free!

2008-02-13 Thread swenson rodharn
Free online photo Album, Free online auto-matic Back-up, Free Access your MP3 music online,2 GB For Free! That's right, we are happy to give you a whopping great 2GB of secure online storage where you can manage and share your files easily. For Free! Get Free Code: Limited Time Only! http://www.w

[algogeeks] Do you Know How Search Engines Work !!! Must Read For Webmasters

2008-02-13 Thread Share n Care Blog
Hi, If you don't then how will you increase the page rank of your site or blog? Suggested Reading.Click Here. -- Yours Sincerely Team, Share N Care Blog. Please do not mark us as SPAM.If you wish to unsubscri

[algogeeks] Re: Frog Problem

2008-02-13 Thread Sunny
Amazing.. Are all Indians out here :-) I am impressed ... On Feb 13, 11:05 am, "macharla.pradeep" <[EMAIL PROTECTED]> wrote: > Hi, > > Let's see my solution, > > Let N is the Total number of stones, and FJ ( N ) gives total number of ways > to reach > > FJ ( N ) = FJ ( N-1 ) + FJ ( N-2) , if N >

[algogeeks] A useful site for placement papers

2008-02-13 Thread gurbinder dhillon
placement-info.blogspot.com is building site for placement papers.Please visit it for regular updates of placement papers -- Gurbinder Singh placement-info.blogspot.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group

[algogeeks] Re: Stortest Subtext Problem

2008-02-13 Thread Dave
This algorithm won't find the smallest subtext. Suppose the keywords are A B and C and the text is A A B A C. The algorithm will report the entire text as the subtext, but the correct answer is B A C. Dave On Feb 13, 3:46 am, arun <[EMAIL PROTECTED]> wrote: > maintain a hash table with keys as t

[algogeeks] Re: factorial

2008-02-13 Thread kunzmilan
On 13 Ún, 03:17, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > how will u find the "number of digits in the factorial of a number" > without finding the factorial?? > Try Stirling formula. Rougly nlogn. kunzmilan --~--~-~--~~~---~--~~ You received this message

[algogeeks] Re: Stortest Subtext Problem

2008-02-13 Thread arun
maintain a hash table with keys as the set of keywords and values as a boolean value initialized with false. initialize a counter count with 0 let n be the total number of keywords. start comparing the words of the text with keywords. If word matches with keyword then { go to hash table and if va