Tagged Questions

0
votes
1answer
52 views

Proof for depth of balanced search tree

If T is a balanced BST with n elements, L its left subtree and R its right one, how can I prove that its depth is less than or equal to 2log(n) + 1? There is a proof by induction …
0
votes
1answer
43 views

How does this work in computing the depth map?

From this site: http://www.catalinzima.com/?page%5Fid=14 I've always been confused about how the depth map is calculated. The vertex shader function calculates position as follo …
0
votes
1answer
23 views

Stack of photos AS3 - stuck on somthing simple

Hi there I found a tutorial on creating a stack of photos in flash using AS3 (http://designreviver.com/tutorials/create-an-interactive-stack-of-photos/). I have been trying to ma …
0
votes
0answers
55 views

Tree enumeration, n-depth and m-width

Hi all, I am trying to develop a java algorithm for the enumeration of n-depth and m-width trees: Each node can have at maximum 7 children. Nodes are of different type: a first k …
0
votes
0answers
15 views

xcode debugging maximum depth for investigating variables?

Hey There! I use Xcode to code for a current iPhone Project. It's the first time i work with XCode. What i wonder is, whether i need to set somewhere how 'deep' i can be able to r …
0
votes
1answer
290 views

MySQL: Calculate depth in a parent-child model?

As title says: How do I calculate a node's depth in a parent-child model? I'll need the depth to, among other things, create the indent in my list (coded with PHP). Thank you in a …