In the first instance, we know that the root will be 7. We identify 7 within the in order traversal, and discover that the left subtree must contain 4, 10, 3, 1,, and right subtree 11, 8, 2 respectfully. Within the pre order traversal, we can also identify where this cut is.
So it then follows that every following node is the first element in the pre order traversal of its respected subtree, and its left and right subtree is said node identified within the in order traversal, split for a left and right hand side.
The way this tree is constructed follows DFS, where for construct the nodes first, and only when we return do we link the pointers together.