I am having some trouble determining space and time complexities. For example, if I have a tree that has a branching factor b and will have at most a depth d, how can I calculate the time and space complexities? I know they are O(b^d) and O(bd) , but my problem is how to get to those values.

Thanks!

link|improve this question

Asymptotic complexities are not values. They are formulae. If you want exact values you should speak of time and space costs. Then the next question, at least for the time cost, will be "time to do what?" Visit every element in the tree? Find the path from the root to a leaf on which the nodes have the smallest sum? Put the tree into some kind of normal form? Only operations have time costs and complexities. Data structures just sit there. – Norman Ramsey Jan 17 '10 at 6:16
feedback

2 Answers

Space complexity amounts to "how much memory will I need to allocate for this algorithm". Time complexity amounts to "how long will it take to execute (in an abstract sense").

A tree with branching factor b and depth d will have one node at its zeroith level, b nodes at its first level, b*b = b^2 nodes at its second level, b^2 * b = b^3 at its third level, etc. In those four levels (depth 3) it has 1 + b + b^2 + b^3. In terms of complexity we only keep around the highest order term and drop any multiplying constants usually. So you end up with a complexity of O(b^d) for space complexity.

Now in time complexity, what your counting is not the number of nodes, but rather the number of loops or recursive calls your algorithm will take to complete (worst case).

I'm going to go out on a limb and assume you're talking about IDDFS. The explanation of where the O(b^d) and O(bd) come from is nicely explained in this wiki article.

link|improve this answer
2  
He is asking about calculating the time and space complexity of minimax. O(b^d) is the time complexity and the space complexity is O(bd). So this answer doesn't provide much value. – danben Jan 17 '10 at 5:35
@danben ah, yes i missed that tag. – vicatcu Jan 17 '10 at 5:38
feedback

Time: All the nodes in the tree have to be generated, assuming it costs some constant time to generate a node (not necessarily always the same but for ease of use i just use c) we have c*b^0 cost for the first level and in the lines of the previous answer c*b^1, c*b^2, ... cost for the next levels up to c*b^d for the leaf level. So the complexity amounts to O(c + c*b + c*b^2 + ... + c*b^d), drop all the lower order terms and you'll end up with O(c*b^d) = O(b^d)

Space: At every level the program makes a choice which path it would want to follow and it strips the other possible paths. Since every node is a calculation based on it's b children you have the path down the tree (d nodes) and for every node you actually keep b nodes, that's how you get the space complexity of O(b*d).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.