In-Order, Pre-Order & Post-Order Traversal In Binary Trees Explained In Python

Liu Zuo Lin
CodeX
Published in
4 min readFeb 16, 2022

--

A recursion-y tree

If you’re currently learning about binary trees and its variants eg. binary search trees, AVL trees etc, chances are that you need to know how to traverse through the binary tree. This article attempts to explain this simply for you.

Quick Introduction — Binary Trees

--

--