[Math] Bijection between binary trees and plane trees

combinatoricstrees

I would like to describe a bijection between binary trees and plane trees. A binary tree has a root node and each node of the tree has at most 2 children (left and right). A plane tree has a root node and the children of each node are ordered from left to right. Can someone enlighten me on this? Thanks!

Best Answer

There is a way of encoding n-ary trees into binary: the left is a son and the right is a brother; here is the Wikipedia's entry.

P.S. This was a comment, made an answer on request.

Related Question