vote up 0 vote down star
1

In class we were given a simple decision tree for sorting 3 elements (a,b,c).

alt text

While looking at this, it makes sense to me. I was able to follow it.

However, I now have to make a decision tree for 4 elements (a,b,c,d) and the number of leafs just shot up to 24.

I'm struggling approaching the decision tree in a methodical way that helps me keep track and of the elements I'm suppose to be comparing at each branch.

What is a methodical way of approaching the construction of a larger decision tree? I'd even be willing to write a program to spit out the possible leafs-structure if I knew how to.

flag

65% accept rate

2 Answers

vote up 1 vote down

You might want to look into Sorting Networks. It should be possible to convert the optimal sorting network for a given number of inputs into a decision tree, I think.

Alternately, you could take a given sorting algorithm and step through it, creating a new branch at each comparison.

Finally, you could do this in reverse - for example, by taking a merge-sort type approach: Lay out all 24 possible sort orders at the bottom of the tree. Pick a comparison, and partition the leaves into two sets based on the outcome. Repeat recursively for each branch until you only have one leaf per branch.

link|flag
vote up 0 vote down

The kind of algorithm has been described by Charles Forgy: see the Rete algorithm. (I'm sorry, the article in WP is certainly not a quick answer but it might be a good start)

link|flag

Your Answer

Get an OpenID
or

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