This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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>, | |
} |
OlderNewer