Tagged Questions

1
vote
4answers
129 views

Homework: binary tree - level-order trasversal

hi, is there a way to visit a binary tree from the lowest level to the higher (root) ? not from the root-level to the lowest!!! (and not using the level-order traversal and a stack...!!!) <--- …
3
votes
5answers
259 views

Copy constructor for a binary tree C++

I have a Tree class with the following definition: class Tree { Tree(); private: TreeNode *rootPtr; } TreeNode represents a node and has data, leftPtr and rightPtr. How do I create a copy of a …
1
vote
4answers
115 views

Binary tree with different node types

I'm working on a somewhat complex mathematical code, written in C++. I'm using (templated) tree structures for adaptive function representation. Due to some mathematical properties I end up in a …
0
votes
4answers
212 views

Java recursive binary tree

Welcome! I have a recursive public static method named less that takes a tree node (an original binary tree, not really a search tree) and a int parameter that returns if all the values in the tree …