Decision Trees

TagsCS161Complexity

The big idea

We can use decision trees to show upper bounds on sorting algorithms.

Decision tree

In comparison based sorting, we are allowed to compare two elements at a time and understand if one is larger or smaller than the other. You can think of this as a decision tree in which each node is a question, and each answer gets you to another question until you reach the end.

Minimal complexity

Now here’s the crux: at the end, the algorithm spits out a sorted array. If the array of size nn, then there must be n!n! sorted array at the leaves of the tree. If we started with one question (which we do) and if the tree is binary & balanced, then the longest path must be log2(n!)\log_2(n!)

From Stirling’s approximation or the neat trick with log factorials, we get hat log(n!)=Θ(nlogn)\log(n!) = \Theta(n\log n).

So if the general comparison based sorting algorithm is lower bounded with nlognn\log n in the worst case, then we can assert that all such algorithms must run in at least nlognn\log n. Cool!

Randomized algorithms

You can actually prove that the expected runtime of randomized algorithms like Quicksort also have the same lower bound. However, we will not do it here (a little beyond the scope of our discussion)

Understanding the tree

One Philosophy

Perhaps this is the most unintuitive part of the whole thing. How do you even begin thinking of a problem in terms of a decision tree? Well, it always helps to think of the number of possible inputs and the number of possible outputs.

Here’s the general rule of thumb: the number of leaf nodes is the input size divided by the number of inputs that can reach one output.

It’s best to think of a leaf node as containing the “answer” to something. Let’s look at a few examples

  1. Sorting a list: the leaf node contains a list of indices that map an input to sorted output
  1. Select top-K in a list: the leaf node contains a list of indices that are the top-k in the list
  1. Merging sorted list: the leaf node contains a list of insertion orders
  1. n\sqrt{n}-sorting (in which the sorted number may be within a certain radius of the actual location): the leaf node contains a list of indices that map to an approximately sorted output

Now, let’s think about the number of inputs that can reach one output. Practically speaking, this is the number of inputs for which, after you apply the leaf node’s list of indices, yield a correct answer.

  1. Sorting a list: there can only be one ordering of numbers that work with the root node’s sorting plan. So, there are n!n! leaf nodes
  1. Select top-K in a list, sorted. If you specify the indexes of top-k, the other nkn-k numbers can be permuted any way you want. So there are n!/(nk)!=(nk)k!n! / (n-k)! = \binom{n}{k}k! leaf nodes
  1. Select top-K in a list, unsorted. If you specify the indexes of top-K, firstly, there are k!k! different permutations of top-k elements that yield the correct answer. Second, there are (nk)(n-k) different permutations of non-top-k elements that don’t matter. So, you have n!/(nk)!k!=(nk)n!/(n-k)!k! = \binom{n}{k} leaf nodes
  1. Merging sorted lists of size n,mn, m. Here, you must work backwards. If you give an order of insertion, only one pair of lists will satisfy (assuming distinct numbers). But how large is the input? Well, you can imagine splitting apart a sorted sequence of size m+nm+n. You can do this in (m+nn)=(m+nm)\binom{m+n}{n} = \binom{m+n}{m} different ways.
  1. n\sqrt{n} sorting: there are n!n! inputs, but you can show that there are O(nn)O(n^n) different valid sort outputs. You can imagine turning this relationship around and saying that there are O(nn)O(n^n) different inputs that reach one output. Therefore, the number of leaf nodes is n!O(nn)\frac{n!}{O(n^n)}

From the number of leaf nodes, we just take the logarithm to find the depth of the tree

At the end, you will get an expression that should be placed in Ω\Omega, as it is the lower bound.

Another philosophy

Just look at the number of outputs an algorithm can make

  1. In sorting, it’s just n!n!
  1. In select top-K, sorted, it’s just (nk)k!\binom{n}{k}k!, because you pick the top k, and then you sort
  1. In select top-K unsorted, it’s just (nk)\binom{n}{k}
  1. In merging sorted lists, the algorithm picks which ones to merge at what time, so it’s just (m+nn)\binom{m+n}{n}
  1. In n\sqrt{n} sorting, there are O(nn)O(n^n) possible correct outputs, so you can imagine the best algorithm as taking advantage of the multiple paths and pushing O(nn)O(n^n) different inputs down one solution path. Therefore, there are n!/O(nn)n!/O(n^n) leaf nodes.