1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
#ifndef TREES_IMPL_HPP
#define TREES_IMPL_HPP
#include <terraces/trees.hpp>
namespace terraces {
/**
* Returns whether a node is the root-node
*/
inline bool is_root(const node& n) { return n.parent() == none; }
/**
* Returns whether a node is a leaf.
*/
inline bool is_leaf(const node& n) {
assert((n.lchild() == n.rchild()) == (n.lchild() == none));
return n.lchild() == none;
}
/**
* Returns whether a tree is a valid rooted tree.
* This means it is valid and the first node is its root.
*/
void check_rooted_tree(const tree& t);
template <typename Result>
Result count_unrooted_trees(index num_leaves) {
Result result = 1;
for (index i = 3; i <= num_leaves + 1; i++) {
result *= (2 * i - 5);
}
return result;
}
inline index num_leaves_from_nodes(index num_nodes) {
assert(num_nodes % 2 != 0);
return (num_nodes + 1) / 2;
}
inline index num_nodes_from_leaves(index num_nodes) { return 2 * num_nodes - 1; }
template <typename F1, typename F2, typename F3, typename F4>
void tree_traversal(const tree& t, F1 pre_cb, F2 post_cb, F3 sibling_cb, F4 leaf_cb,
index root_idx) {
enum class visited { none, left, both };
std::stack<std::pair<index, visited>> stack;
stack.push(std::make_pair(root_idx, visited::none));
while (!stack.empty()) {
auto current = stack.top();
auto cur_idx = current.first;
stack.pop();
auto cur_node = t[cur_idx];
if (is_leaf(cur_node)) {
leaf_cb(current.first);
} else {
switch (current.second) {
// descend into left tree
case visited::none:
pre_cb(cur_idx);
stack.push(std::make_pair(cur_idx, visited::left));
stack.push(std::make_pair(cur_node.lchild(), visited::none));
break;
// descend into right tree
case visited::left:
sibling_cb(cur_idx);
stack.push(std::make_pair(cur_idx, visited::both));
stack.push(std::make_pair(cur_node.rchild(), visited::none));
break;
// move up again
case visited::both:
post_cb(cur_idx);
break;
}
}
}
}
/**
* Traverses a tree in post-order while calling a given callback on every node.
*/
template <typename F>
void foreach_postorder(const tree& t, F cb, index root = 0) {
auto nop = [](index) {};
tree_traversal(t, nop, cb, nop, cb, root);
}
template <typename F>
void foreach_preorder(const tree& t, F cb, index root = 0) {
auto nop = [](index) {};
tree_traversal(t, cb, nop, nop, cb, root);
}
// For testing purposes
std::vector<index> preorder(const tree& t);
std::vector<index> postorder(const tree& t);
// output trees
void print_tree_dot(const tree& t, const name_map& names, std::ostream& output, bool rooted);
} // namespace terraces
#endif // TREES_IMPL_HPP
|