\section{Variation: Ternary trees}Let us now try a variation on lexicon structure, using the notion of aternary tree.This notion is fairly natural if one wants to restore for ordered treesthe locality of zipper navigation in binary trees. Remark that when wego up to the current father, we have to close the list of elder siblingsin order to restore the full list of children of the upper node.With ternary trees each tree node has two lists of children, elders and youngers. When we go up in the zipper structure, it is now a constantcost operation. Remark that this partition into elders and youngers isnot intrinsic and carries no information, except the memory of the previousnavigation. This is again an idea of optimizing computation bycreating redundancy in the data structure representations. We may for instance exploit this redundancy in balancing our trees for faster access. Ternary trees are inspired from Bentley and Sedgewick\cite{bentley}.