Binary Tree

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.
> but that doesn't help me actually build the tree.
There are several trees that have that pre-order traversal.
So given these numbers: 47 43 20 24 32 44 35 , how would the tree look?
Topic archived. No new replies allowed.