common-tree

Crates.iocommon-tree
lib.rscommon-tree
version0.2.0
sourcesrc
created_at2021-09-09 04:17:56.469389
updated_at2021-09-12 03:46:26.883871
descriptioncommon tree lib
homepagehttps://github.com/chanble/common-tree
repositoryhttps://github.com/chanble/common-tree
max_upload_size
id448710
size12,411
chanble (chanble)

documentation

README

common tree 树结构

通用树结构库, 是现实了深度遍历(preorder, 先序遍历)和广度优先遍历

usage 用法

更多可以查看examples


use common_tree::Node;

struct NodeData {
    id: usize,
    name: String,
}

impl NodeData {
    pub fn new(id: usize, name: String) -> Self {
        Self {
            id,
            name,
        }
    }

    pub fn print(&self) {
        println!("id: {}, name: {}", self.id, self.name);
    }
}
type HellNode = Node<NodeData>;

fn main() {

    let root = HellNode::new(NodeData::new(0, format!("root")));

    root.data().print();

}

run examples

cargo run --example hello
Commit count: 10

cargo fmt