The document discusses three methods for traversing a tree: in-order, pre-order, and post-order traversal. In-order traversal visits the left subtree, then the root, then the right subtree. Pre-order visits the root, left subtree, then right subtree. Post-order visits the left subtree, right subtree, then the root. Examples are provided to demonstrate the output of each traversal type on a sample tree.