[][src]Module treelike::example

This module contains some basic example trees that are used both for tests and for you to get some inspiration.

Structs

BorrowingBinaryTree

A basic binary tree that contains references to its children

LinTree

A tree whose nodes are stored in a backing slice.

OwningBinaryTree

A basic binary tree that stores its children in Box-es on the heap. Used to show off trees that own the complete data and don't rely on any backing storage.