[algogeeks] Solution Book

2013-03-17 Thread shady
Does anyone have solutions for Let Us C by Yashwant Kanetkar ? If yes, then please PM me. -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [algogeeks] Solution Book

2013-03-17 Thread Rahul
I s your account hacked? -- www.quora.com/rahul-rai On Mon, Mar 18, 2013 at 12:27 AM, shady sinv...@gmail.com wrote: Does anyone have solutions for Let Us C by Yashwant Kanetkar ? If yes, then please PM me. -- You received this message because you are subscribed to the Google Groups

Re: [algogeeks] Re: Algo Question

2013-03-17 Thread Rainer
Am Montag, 4. März 2013 07:52:11 UTC+1 schrieb nand kishore: I think DP soln would be : int leastPay(int[] demands, int sum, int index) { if(index == demands.length) return sum; else { if(sum demands[index]) return leastPay(demands,

Re: [algogeeks] java

2013-03-17 Thread Goutham Vangara
@sulekha your analogy ,i.e., comparing objects to primitives is not correct, objects do not just hold data,they have some behavior as well.In Object Oriented Programming language Objects are defined as to reflect a real world entity. Inheritance is also a feature inspired from the real world. So

Re: [algogeeks] Leaf nodes from inorder traversal

2013-03-17 Thread Nishant Pandey
what the issue with this , while doing inorder traversal check if left and right both are null its ur leaf node else keep traversing. If i couldn't understood ur problem , please explain again. On Sat, Mar 16, 2013 at 7:44 PM, Megha Agrawal megha1...@iiitd.ac.inwrote: Hello all, Is it

RE: [algogeeks] java

2013-03-17 Thread Richard Reed
Double kudos to head first. I have their design patterns book. Sent from my Windows Phone -- From: sasi kumar Sent: 3/14/2013 12:58 AM To: algogeeks@googlegroups.com Subject: Re: [algogeeks] java @Manish Well Explained:) @sulekha Probably you have to read Head First

Re: [algogeeks] java

2013-03-17 Thread manish untwal
@sasi and Sulekhaits Head First Java...which explained these properties to me. :) On Thu, Mar 14, 2013 at 1:28 PM, sasi kumar tmsasiku...@gmail.com wrote: @Manish Well Explained:) @sulekha Probably you have to read Head First java which is an awesome book that covers these topics with