I am a little confused about how to draw a binary tree using Pre-Order Traversal, the root would be the first number going from left to right? So if I have 48 32 51 54 31 24 39, 48 would be the node. After that how are the child nodes distributed?? As far as I know the only conditions for a Binary Tree is that the root must have 2 children, and that Pre-Order goes by VLR(Value,Left,Right), but that doesn't help me actually build the tree.