MCPcopy Create free account
hub / github.com/QMHTMY/RustBook / AvlTree

Enum AvlTree

code/chapter07/avl.rs:7–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5// Avl 树定义
6#[derive(Debug)]
7enum AvlTree<T> {
8 Null,
9 Tree(Box<AvlNode<T>>),
10}
11
12// Avl 树节点定义
13#[derive(Debug)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected