Processing math: 100%

Tuesday, May 31, 2016

Generate a random red-black tree [Solution]

The problem was to generate a random structurally unique red-black tree on n nodes.

Solution


Now if we knew exactly how many red-black trees of n nodes have L nodes in the left subtree, then we can generate them as follows.

Count the total number of trees with n nodes. For each L in {0,1,,n},  count the fraction αL of them with L left nodes in the left subtree.

Now generate a random number L in {0,1,2,,n} with probability αL. This will be the number of children in the left subtree. The number of children in the right subtree is n1L. Recursively generate the subtrees now.

This works because the subtrees of a red-black tree are red-black trees themselves. On how to count, see this previous post on this blog on counting red-black trees (some modifications might be needed).

Monday, May 9, 2016

exp(x) inequality [Solution]

The problem was to show that

ex1+x+x22!++xnn!

for all x0 and integer n0.

Solution



Let fn(x)=1+x+x22!++xnn! with f0(x)=1

Now exf0(x) for all x0

Now suppose exfn(x) for all x0.

Let h(x)=exfn+1(x)

Now h(0)=0.

We also have that the derivative of h, h(x)=exfn(x)

By induction assumption h(x)0 for all x0.

Thus h is increasing and so h(x)h(0)=0 for all x0.

Thus by induction, we are done.

Wednesday, May 4, 2016

Generate a random red-black tree

Following up on two previous posts.

Given n, can you give an algorithm to generate a random red-black tree consisting of n nodes? Each structurally unique tree should have an equal chance of being generated (we are not interested in the actual assignment of colors).

[Solution]