AVL tree/Rust: Difference between revisions

m
Fixed syntax highlighting.
m (Remove leading and trailing newline)
m (Fixed syntax highlighting.)
 
Line 1:
<langsyntaxhighlight lang="rust">/// This implementation uses an addressable vector as the tree's store.
/// It is possible to construct a mutable tree using Rc<RefCell<>>,
/// but it adds some complexity.
Line 1,083:
return;
}
}</langsyntaxhighlight>
9,485

edits