[algogeeks] invitation for CODECRACKER 2012 [ TODAY, 9:00 PM ]

2012-02-01 Thread saurabh araiyer
CodeCracker is an online programming contest with fully automated judge system. The main drive and motivation behind this platform is to inculcate the culture of programming among us, helping understand the importance of algorithms in problem solving and recognizing the power of GNU/Linux as a

Re: [algogeeks] Re: Director Round MS Google

2012-02-01 Thread malay chakrabarti
RD is the best way to go. On Wed, Feb 1, 2012 at 12:59 PM, Varun tewari.va...@gmail.com wrote: Ideally it should be invested intellectually to reap fruits for future. Invest in RnD for upcoming technologies like wireless, video, roaming, seamless integration of devices, achieving standards

Re: [algogeeks] Amazon written test question

2012-02-01 Thread Manni mbd
^same as above.. for upward.. start again from the nodes now distance is distance is (distance of start node -k) .. if you reach this from the root.. print it.. also better is we use array rather than using linked list .. as sorting can be a tedious task in case of link lists ! On 2/1/12, atul

Re: [algogeeks] Re: Reverse Engg.

2012-02-01 Thread Ravi Ranjan
@atul true... :P:P:P:P and definately linux will develop within a year after release of windows95...:P On Jan 30, 11:20 am, Karthikeyan V.B kartmu...@gmail.com wrote: hi, can anyone tell me how i can convert exe back to c source? -- You received this message because you

Re: [algogeeks] Amazon written test question

2012-02-01 Thread atul anand
@Manni : nodes should be added to the linklist ..such that linklist remain in sorted orderno need to sort the linklist. On Wed, Feb 1, 2012 at 2:30 PM, Manni mbd mbd2...@gmail.com wrote: ^same as above.. for upward.. start again from the nodes now distance is distance is (distance of

Re: [algogeeks] Amazon written test question

2012-02-01 Thread atul anand
@Manni : didnt get your algo for upward nodes. On Wed, Feb 1, 2012 at 2:30 PM, Manni mbd mbd2...@gmail.com wrote: ^same as above.. for upward.. start again from the nodes now distance is distance is (distance of start node -k) .. if you reach this from the root.. print it.. also better is

[algogeeks] algorithm to sort based on frequency.

2012-02-01 Thread Varun
I was asked this question sometime during an interview. WE have an array of known length. The elements in array can be repetitive. now sort the array based on frequency of occurrence of each element in array. Eg: a= {4.3.2.5.4.6.2.6} after sorting a={4,4,2,2,6,6,3,5} 4,2,6 all occurs twice, in

[algogeeks] Re: algorithm to sort based on frequency.

2012-02-01 Thread Don
Build a hashmap with the array value as a key mapping to a struct which contains the key, frequency, and location of first occurance. Then sort the hashed elements comparing first by frequency and breaking ties based on first occurance. Then iterate through the sorted elements and fill in the

Re: [algogeeks] Android Project

2012-02-01 Thread Abhirup Ghosh
If you have Android sdk setup then you can find samples in that only. If you haven't done that please find necessary information in http://developer.android.com/index.html - Abhirup On Tue, Jan 31, 2012 at 5:20 PM, saurabh singh saurab...@gmail.com wrote: Saurabh Singh B.Tech (Computer

Re: [algogeeks] decimal to binary..c code....

2012-02-01 Thread Abhirup Ghosh
I think you have to think about the manual way of doing it - how to handle the integer part and decimal part. You can find this in any standard book. Then try out the algorithm. On Mon, Jan 30, 2012 at 12:26 AM, Rahul Kumar rahul.cs.mn...@gmail.com wrote: ur subject is decimal to binary but in

[algogeeks] not recieving mails

2012-02-01 Thread arpit.gupta
HI, i am not recieving any mails since 20 jan , plz chk thank you -- 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

Re: [algogeeks] Android Project

2012-02-01 Thread rahul sharma
i need some mini project...i know about this site...if anyone has any small app.plz share...i hhave to submitbut note enough tym to prepare...thnx On Wed, Feb 1, 2012 at 10:16 PM, Abhirup Ghosh abhiru...@gmail.com wrote: If you have Android sdk setup then you can find samples in that only.

Re: [algogeeks] decimal to binary..c code....

2012-02-01 Thread rahul sharma
sry... i need for decimal to binary... On Wed, Feb 1, 2012 at 10:20 PM, Abhirup Ghosh abhiru...@gmail.com wrote: I think you have to think about the manual way of doing it - how to handle the integer part and decimal part. You can find this in any standard book. Then try out the algorithm.