[algogeeks] Re: Divide and Conquer problem

2010-04-09 Thread «« ÄÑÜJ »»
Thnx guys for the help.. On Apr 7, 7:45 pm, Nikhil Agarwal nikhil.bhoja...@gmail.com wrote: Following are the recurrences: T(n)=2T(n/2)+1 T(2)=1 T(n)=n-1 =O(n) 1 is added because winner of both the sides will compete at most 1 once. for Time table u can form a tree x1 x2 x3 x4 x5 \   /

[algogeeks] branch and bound algorithm for TSP problem..

2010-04-09 Thread «« ÄÑÜJ »»
I want some help to implement branch and bound algorithm for the TSP problem... I got the many leads for TSP problem but none of them were in Branch and Bound method... Will appreciate any help... thanks guys -- You received this message because you are subscribed to the Google Groups

[algogeeks] combination problem

2010-04-09 Thread GentLeBoY
no. of solutions to linear equation as x1+x2+x3+. . .+xk=n , all variables are positive natural numbers how is it (n-1)C(k-1) plz explain -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to

Re: [algogeeks] Why is inorder traversal necessary to reconstruct a binary tree?

2010-04-09 Thread Terence
The simplest case is: A A / and \ BB both with preorder(and level-order) AB and postorder BA On 2010-4-9 1:23, Himanshu Aggarwal wrote: For a binary tree , if we are given an inorder traversal and a preorder/postorder/level-order