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

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.
