Skip to content

Instantly share code, notes, and snippets.

@yongkyuns
yongkyuns / binary_tree.rs
Created December 30, 2020 14:14
Binary tree with indexing
// Binary tree with index, copied from https://sachanganesh.com/programming/graph-tree-traversals-in-rust/
pub type Idx = usize;
pub struct TreeNode {
pub value: usize,
pub left: Option<Idx>,
pub right: Option<Idx>,
}