Serializing Using Preorder Traversal
We can modify the preorder routine to serialize a binary tree. All we need is a designated key to specify a null link. For this example, let's assume that we can only store zero or positive keys in the tree. Here, we can use -1 as a special key to denote a null link. The figure below shows the output array for the tree of our earlier example.

The pseudo-code for the serialization process is given below:
xxxxxxxxxx11
Routine: treeToArrayInput: n = root of treeOutput: arrKeys: array of keys​Base case: n==null1. arrKeys.add(-1)​Recursive case:1. arrKeys.add(n.key);2. treeToArray(n.left)3. treeToArray(n.right)OUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment


