[][src]Struct trees::tree::Tree

pub struct Tree<T> { /* fields omitted */ }

Composed of a root Node and a list of its child Nodes.

Implementations

impl<T> Tree<T>[src]

pub fn new(data: T) -> Tree<T>[src]

Creates a Tree containing only root node associated with given data.

pub fn from_tuple<Tuple, Shape>(tuple: Tuple) -> Self where
    Tuple: TupleTree<T, Shape>, 
[src]

Constructs tree from tuple notations.

Examples

use trees::{Tree, tr};

let tree = Tree::<i32>::from_tuple(( 0, (1,2), (3,4) ));
assert_eq!( tree, tr(0) /(tr(1)/tr(2)) /(tr(3)/tr(4)) );
assert_eq!( tree.to_string(), "0( 1( 2 ) 3( 4 ) )" );

pub fn root(&self) -> &Node<T>[src]

Reference of the root node.

pub fn root_mut(&mut self) -> Pin<&mut Node<T>>

Notable traits for Pin<P>

impl<P> Future for Pin<P> where
    P: Unpin + DerefMut,
    <P as Deref>::Target: Future
type Output = <<P as Deref>::Target as Future>::Output;
[src]

Mutable reference of the root node.

pub fn iter_mut<'a, 's: 'a>(&'s mut self) -> IterMut<'a, T>

Notable traits for IterMut<'a, T>

impl<'a, T: 'a> Iterator for IterMut<'a, T> type Item = Pin<&'a mut Node<T>>;
[src]

Provides a forward iterator over child Nodes with mutable references.

Examples

use trees::Tree;

let mut tree = Tree::<i32>::from_tuple(( 0, 1, 2, 3 ));
tree.iter_mut().for_each( |mut child| *child.data_mut() *= 10 );
assert_eq!( tree.to_string(), "0( 10 20 30 )" );

pub fn push_front(&mut self, tree: Tree<T>)[src]

Adds the tree as the first child.

Examples

use trees::Tree;
let mut tree = Tree::new(0);
tree.push_front( Tree::new(1) );
assert_eq!( tree.to_string(), "0( 1 )" );
tree.push_front( Tree::new(2) );
assert_eq!( tree.to_string(), "0( 2 1 )" );

pub fn push_back(&mut self, tree: Tree<T>)[src]

Adds the tree as the last child.

Examples

use trees::Tree;
let mut tree = Tree::new(0);
tree.push_back( Tree::new(1) );
assert_eq!( tree.to_string(), "0( 1 )" );
tree.push_back( Tree::new(2) );
assert_eq!( tree.to_string(), "0( 1 2 )" );

pub fn prepend(&mut self, forest: Forest<T>)[src]

Adds all the forest's trees at front of children list.

Examples

use trees::{Forest, Tree};

let mut tree = Tree::new(0);
tree.push_back( Tree::new(1) );
tree.push_back( Tree::new(2) );
let mut forest = Forest::new();
forest.push_back( Tree::new(3) );
forest.push_back( Tree::new(4) );
tree.prepend( forest );
assert_eq!( tree.to_string(), "0( 3 4 1 2 )" );

pub fn append(&mut self, forest: Forest<T>)[src]

Adds all the forest's trees at back of children list.

Examples

use trees::{Forest, Tree};

let mut tree = Tree::new(0);
tree.push_back( Tree::new(1) );
tree.push_back( Tree::new(2) );
let mut forest = Forest::new();
forest.push_back( Tree::new(3) );
forest.push_back( Tree::new(4) );
tree.root_mut().append( forest );
assert_eq!( tree.to_string(), "0( 1 2 3 4 )" );

pub fn abandon(&mut self) -> Forest<T>[src]

Removes and returns the given Tree's children.

Examples

use trees::{Forest, Tree};

let mut tree = Tree::new(0);
tree.push_back( Tree::new(1) );
tree.push_back( Tree::new(2) );
let forest = tree.abandon();
assert_eq!( forest.to_string(), "( 1 2 )" );
assert_eq!( tree, Tree::new(0) );

pub fn pop_front(&mut self) -> Option<Tree<T>>[src]

Removes and returns the first child.

Examples

use trees::Tree;

let mut tree = Tree::new(0);
tree.push_back( Tree::new(1) );
tree.push_back( Tree::new(2) );
assert_eq!( tree.to_string(), "0( 1 2 )" );
assert_eq!( tree.pop_front(), Some( Tree::new(1) ));
assert_eq!( tree.to_string(), "0( 2 )" );
assert_eq!( tree.pop_front(), Some( Tree::new(2) ));
assert_eq!( tree.to_string(), "0" );
assert_eq!( tree.pop_front(), None );

pub fn pop_back(&mut self) -> Option<Tree<T>>[src]

Removes and returns the last child.

Examples

use trees::Tree;

let mut tree = Tree::new(0);
tree.push_back( Tree::new(1) );
tree.push_back( Tree::new(2) );
assert_eq!( tree.to_string(), "0( 1 2 )" );
assert_eq!( tree.pop_back(), Some( Tree::new(2) ));
assert_eq!( tree.to_string(), "0( 1 )" );
assert_eq!( tree.pop_back(), Some( Tree::new(1) ));
assert_eq!( tree.to_string(), "0" );
assert_eq!( tree.pop_back(), None );

pub fn front_mut(&mut self) -> Option<Pin<&mut Node<T>>>[src]

Returns a mutable reference to the first child of this node, or None if it has no child.

pub fn back_mut(&mut self) -> Option<Pin<&mut Node<T>>>[src]

Returns a mutable reference to the last child of this node, or None if it has no child.

impl<T> Tree<T>[src]

pub fn bfs_children_mut(&mut self) -> BfsForest<Splitted<IterMut<'_, T>>>[src]

Provides a forward iterator with mutable references in a breadth-first manner, which iterates over all its descendants.

Examples

use trees::{tr, Tree};

let mut tree = Tree::from_tuple(( 0, (1,2,3), (4,5,6), ));
tree.bfs_children_mut().iter
    .zip( 1.. )
    .for_each( |(visit,nth)| *visit.data += 10 * nth );
assert_eq!( tree, Tree::<i32>::from_tuple(( 0, (11,32,43), (24,55,66), )));

pub fn bfs_mut(&mut self) -> BfsTree<Splitted<IterMut<'_, T>>>[src]

Provides a forward iterator with mutable references in a breadth-first manner.

Examples

use trees::{tr, Tree};

let mut tree = Tree::from_tuple(( 0, (1,2,3), (4,5,6), ));
tree.bfs_mut().iter
    .zip( 1.. )
    .for_each( |(visit,nth)| *visit.data += 10 * nth );
assert_eq!( tree, Tree::<i32>::from_tuple(( 10, (21,42,53), (34,65,76), )));

pub fn into_bfs(self) -> BfsTree<Splitted<IntoIter<T>>>[src]

Provides a forward iterator with owned data in a breadth-first manner.

Examples

use trees::{bfs,Size};
use trees::Tree;

let tree = Tree::<i32>::from_tuple(( 0, (1,2,3), (4,5,6) ));
let visits = tree.into_bfs().iter.collect::<Vec<_>>();
assert_eq!( visits, vec![
    bfs::Visit{ data: 0, size: Size{ degree: 2, descendants: 6 }},
    bfs::Visit{ data: 1, size: Size{ degree: 2, descendants: 2 }},
    bfs::Visit{ data: 4, size: Size{ degree: 2, descendants: 2 }},
    bfs::Visit{ data: 2, size: Size{ degree: 0, descendants: 0 }},
    bfs::Visit{ data: 3, size: Size{ degree: 0, descendants: 0 }},
    bfs::Visit{ data: 5, size: Size{ degree: 0, descendants: 0 }},
    bfs::Visit{ data: 6, size: Size{ degree: 0, descendants: 0 }},
]);

Methods from Deref<Target = Node<T>>

pub fn data(&self) -> &T

Notable traits for &'_ mut I

impl<'_, I> Iterator for &'_ mut I where
    I: Iterator + ?Sized
type Item = <I as Iterator>::Item;
[src]

Reference of its associated data.

pub fn has_no_child(&self) -> bool[src]

Returns true if Node has no child nodes.

Examples

use trees::Tree;
let mut tree = Tree::new(0);
let mut root = tree.root_mut();
assert!( root.has_no_child() );
root.push_back( Tree::new(1) );
assert!( !root.has_no_child() );

pub fn degree(&self) -> usize[src]

Returns the number of child nodes in Node.

Examples

use trees::Tree;
let mut tree = Tree::new(0);
let mut root = tree.root_mut();
assert_eq!( root.degree(), 0 );
root.push_back( Tree::new(1) );
assert_eq!( root.degree(), 1 );
root.push_back( Tree::new(2) );
assert_eq!( root.degree(), 2 );

pub fn node_count(&self) -> usize[src]

Returns the number of all child nodes in Node, including itself.

Examples

use trees::Tree;

let tree = Tree::<i32>::from_tuple(( 0, (1,2), (3,4) ));
assert_eq!( tree.root().node_count(), 5 );

pub fn parent(&self) -> Option<&Node<T>>[src]

Returns the parent node of this node, or None if it is the root node.

Examples

use trees::Tree;

let tree = Tree::<i32>::from_tuple(( 0, 1, 2, 3 ));
tree.root().iter().for_each( |child| {
    assert_eq!( child.parent(), Some( tree.root()))
});

pub fn iter<'a, 's: 'a>(&'s self) -> Iter<'a, T>

Notable traits for Iter<'a, T>

impl<'a, T: 'a> Iterator for Iter<'a, T> type Item = &'a Node<T>;
[src]

Provides a forward iterator over child Nodes

Examples

use trees::Tree;

let mut tree = Tree::new(0);
assert_eq!( tree.iter().next(), None );

tree.push_back( Tree::new(1) );
tree.push_back( Tree::new(2) );
let mut iter = tree.root().iter();
assert_eq!( iter.next(), Some( Tree::new(1).root() ));
assert_eq!( iter.next(), Some( Tree::new(2).root() ));
assert_eq!( iter.next(), None );

pub fn front(&self) -> Option<&Node<T>>[src]

Returns the first child of this node, or None if it has no child.

pub fn back(&self) -> Option<&Node<T>>[src]

Returns the last child of this node, or None if it has no child.

pub fn deep_clone(&self) -> Tree<T> where
    T: Clone
[src]

Clones the node deeply and creates a new tree.

Examples

use trees::Tree;

let tree = Tree::<i32>::from_tuple(( 0, (1,2,3), (4,5,6), (7,8,9), ));
assert_eq!( tree.iter().nth(1).unwrap().deep_clone(),
    Tree::from_tuple(( 4,5,6 )));

pub fn deep_clone_forest(&self) -> Forest<T> where
    T: Clone
[src]

Clones the node's descendant nodes as a forest.

Examples

use trees::{Tree,Forest};

let tree = Tree::<i32>::from_tuple(( 0, (1,2,3), (4,5,6), (7,8,9), ));
assert_eq!( tree.iter().nth(1).unwrap().deep_clone_forest(),
    Forest::from_tuple(( 5,6 )));

pub fn bfs_children(&self) -> BfsForest<Splitted<Iter<'_, T>>>[src]

Provides a forward iterator in a breadth-first manner, which iterates over all its descendants.

Examples

use trees::Tree;

let tree = Tree::from_tuple(( 0, (1,2,3), (4,5,6), ));
let visits = tree.root().bfs_children().iter
    .map( |visit| (*visit.data, visit.size.degree, visit.size.descendants ))
    .collect::<Vec<_>>();
assert_eq!( visits, vec![ (1, 2, 2), (4, 2, 2), (2, 0, 0), (3, 0, 0), (5, 0, 0), (6, 0, 0), ]);

pub fn bfs(&self) -> BfsTree<Splitted<Iter<'_, T>>>[src]

Provides a forward iterator in a breadth-first manner.

Examples

use trees::Tree;

let tree = Tree::from_tuple(( 0, (1,2,3), (4,5,6), ));
let visits = tree.root().bfs().iter
    .map( |visit| (*visit.data, visit.size.degree, visit.size.descendants ))
    .collect::<Vec<_>>();
assert_eq!( visits, vec![ (0, 2, 6), (1, 2, 2), (4, 2, 2), (2, 0, 0), (3, 0, 0), (5, 0, 0), (6, 0, 0), ]);

Trait Implementations

impl<T: Clone> Clone for Tree<T>[src]

impl<T: Debug> Debug for Tree<T>[src]

impl<T> Deref for Tree<T>[src]

type Target = Node<T>

The resulting type after dereferencing.

impl<T: Display> Display for Tree<T>[src]

impl<'a, T: Clone> Div<&'a Forest<T>> for Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<'a, T: Clone> Div<&'a Forest<T>> for &'a Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<'a, T: Clone> Div<&'a Tree<T>> for Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<'a, T: Clone> Div<&'a Tree<T>> for &'a Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<T> Div<()> for Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<'a, T: Clone> Div<()> for &'a Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<T> Div<Forest<T>> for Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<'a, T: Clone> Div<Forest<T>> for &'a Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<T> Div<Tree<T>> for Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<'a, T: Clone> Div<Tree<T>> for &'a Tree<T>[src]

type Output = Tree<T>

The resulting type after applying the / operator.

impl<T> Drop for Tree<T>[src]

impl<T: Eq> Eq for Tree<T>[src]

impl<T> Extend<Tree<T>> for RcNode<T>[src]

impl<T, Iter> From<BfsTree<Iter>> for Tree<T> where
    Iter: Iterator<Item = Visit<T>>, 
[src]

impl<T> From<Tree<T>> for TreeWalk<T>[src]

impl<T> From<Tree<T>> for RcNode<T>[src]

impl<T> From<TreeWalk<T>> for Tree<T>[src]

impl<T: Hash> Hash for Tree<T>[src]

impl<T> IntoIterator for Tree<T>[src]

type Item = Tree<T>

The type of the elements being iterated over.

type IntoIter = IntoIter<T>

Which kind of iterator are we turning this into?

impl<T> Neg for Tree<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<'a, T: Clone> Neg for &'a Tree<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<T: Ord> Ord for Tree<T>[src]

impl<T: PartialEq> PartialEq<Tree<T>> for Tree<T>[src]

impl<T: PartialOrd> PartialOrd<Tree<T>> for Tree<T>[src]

impl<T> Split for Tree<T>[src]

type Item = T

type Iter = IntoIter<T>

impl<'a, T: Clone> Sub<&'a Tree<T>> for Tree<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<'a, T: Clone> Sub<&'a Tree<T>> for &'a Tree<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<'a, T: Clone> Sub<&'a Tree<T>> for Forest<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<'a, 'b, T: Clone> Sub<&'b Tree<T>> for &'a Forest<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<T> Sub<Tree<T>> for Tree<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<'a, T: Clone> Sub<Tree<T>> for &'a Tree<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<T> Sub<Tree<T>> for Forest<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

impl<'a, T: Clone> Sub<Tree<T>> for &'a Forest<T>[src]

type Output = Forest<T>

The resulting type after applying the - operator.

Auto Trait Implementations

impl<T> !RefUnwindSafe for Tree<T>[src]

impl<T> !Send for Tree<T>[src]

impl<T> !Sync for Tree<T>[src]

impl<T> Unpin for Tree<T> where
    T: Unpin
[src]

impl<T> !UnwindSafe for Tree<T>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> TupleTree<T, ()> for T[src]