Tagged Questions
0
votes
1answer
11 views
Add elements in 'a tree in Ocaml
So, here is my problem..
I need to write a function that will add elements in a tree and it is a binary tree, so it must be well organized. The problem is in how is my tree defined.
I have this tree:
...
0
votes
1answer
17 views
Number of binary tree with n node and n-3 height
How many binary trees can find that have n Node and the height of these tress are n-3?
-1
votes
1answer
40 views
When does a heap become a full binary tree?
I know that heaps are always complete binary trees. But I was wondering when is a heap a full binary tree? Such as what conditions must the heap be in to always be a full binary tree?
0
votes
2answers
58 views
Binary tree challenge example [closed]
I have been watching some lectures from the excellent Richard Buckland and experimenting with binary trees but I don't completely understand how to implement one. Below is how far I have got.
...
4
votes
1answer
158 views
Rewriting trees
I have a data structure that represents a type signature, this data structure is a tree exemplified in the first picture as the red one. I would like to get the black one and so far I've only got the ...
1
vote
1answer
57 views
Determine if a binary tree is subtree of another binary tree using pre-order and in-order strings
I want to find out whether binary tree T2 is a subtree of of binary tree T1. I read that one could build string representations for T2 and T1 using pre-order and in-order traversals, and if T2 strings ...
0
votes
1answer
122 views
C++ Binary Tree implementation
I have the code for the .h file and the .cpp file. I just do not know how to use it in the main. This is what was given, and i need to write the main.
.h file:
class binary_tree {
public:
class ...
0
votes
1answer
87 views
Inserting an element in Binary Tree
Tried exploring a lot over the net, but could get any help,
Everywhere its like adding a node to the Binary Search tree.
Question: Requesting for algorithm and code snippet for adding a node to the ...
1
vote
2answers
84 views
Algorithm to traverse a binary tree level by level starting from root
Can anyone suggest an algorithm to traverse a binary tree level by level starting from root?
0
votes
1answer
41 views
Is there a way to convert from a general tree to binary SEARCH tree?
I know how to convert from a general tree to a binary tree just fine,
a a
/ | \ /
b c d -> b
\
c
...
0
votes
1answer
35 views
Setting parents in tree
I have a huffman binary tree that starts with an empty node a.
A points to a left node and a right node, which also point to left and right nodes. Is it possible to set the parent nodes for each node ...
0
votes
0answers
61 views
ASP.NET : Want to Create a genealogy Tree Like this
Can SOmeone help me to create treeview like this, or atleast help me give a boost start with an example or anthing else
This is what i am seeking (Low reputation point, so cant post images)
...
2
votes
1answer
94 views
Finding visible node in binary tree
A binary tree T is given. A node of that tree containing value V is described as visible if the path from the root of the tree to that node does not contain a node with any value exceeding V. In ...
0
votes
1answer
45 views
To find out the level of level-by-level tree traversal
I am wondering how to find out the level where each node is.
But I can't figure it out.
Here is the part of the section of the code, but I have to modify it.
if(root == NULL)
return;
...
0
votes
1answer
102 views
Find binary tree height
I am trying to write a function to get the height of a binary tree. When I print the value of the maxi the value is what I expect but when the function returns the value, the value is always 0. Can ...
0
votes
0answers
48 views
To find the minimum-weight vertex cover of a tree
Let G=(V,E) be a tree with arbitrary weights associated with the vertices.
Give an efficient algorithm to find a minimum-weight cover of G.
2
votes
2answers
50 views
RB Tree insertion order sensitivity
Given an interval of integers I, an RB Tree R which has n unique elements from I and a sequence S of n unique elements from I whose values are not in R, would the performance of inserting S into R ...
-1
votes
1answer
45 views
Printing Paths for Trees
static void printAllPathsFromRootToLeaf (BinaryTree<Integer> tree, ArrayList<Integer> path)
{
if (tree.isEmpty())
{
System.out.println("Tree is Empty");
return;
...
0
votes
2answers
134 views
Finding k th closest element in Binary search tree
Here is one question which was asked during my interview . For a given BST find the kth closest element. Traversing the entire tree is unacceptable. Solution should not be o(n) and the space ...
1
vote
1answer
87 views
Binary Search Tree Member Function
I'm having trouble writing code to determine if certain data is present in my tree, this is the BinaryTreeNode class
class BinaryTreeNode {
public:
Data * nodeData;
BinaryTreeNode * left;
...
0
votes
3answers
51 views
Walk randomly through a binary tree?
I'm making a program that takes a tree and randomly picks a branch (left or right) and returns those values in a list. For some reason it's not working. Any help?
Example:
~(rand-walk (tree 1 (leaf ...
0
votes
1answer
332 views
Create binary tree from inorder and post order traversal
I was trying to familarize with the question of creating a tree given inorder and postorder traversal. I wrote the following code, but some thing is going wrong which i was unable to find out. Can ...
0
votes
1answer
65 views
Inserting into Augmented Red Black Tree
I am looking at the code of inserting into an augmented Red black tree. This tree has an additional field called "size" and it keeps the size of a subtree rooted at a node x. Here is the pseudocode ...
0
votes
1answer
86 views
BInary Search Tree – Removal and Clear [closed]
I have a problem concerning the removal of a node from a binary search tree. In the third case (left and right child) everything works out well, but in the first two i get a EXC_Bad Access in my ...
1
vote
1answer
74 views
Complexity of TreeSet operations
What is the complexity of higher() in java.util.TreeSet?
What would be the (amortized) complexity of accessing all elements in ascending order?
In the description, it only says "This ...
0
votes
1answer
51 views
python and fast lookups of a tree where nodes have multiple attrubutes and values
I need a tree object in python that is very fast. Speed of the lookup is more important than memory. The leaf node is the value that I want.
So, if given state=NY, postion=3, hourOfDay=2 and ...
1
vote
1answer
50 views
Reconstructing tree given only in-order traversal
Is it possible to reconstruct a tree given only the in-order traversal if the tree has, any empty children filled with an asterisk? (but is not necessarily balanced)
A
/ \
B F
...
0
votes
1answer
92 views
find path between root and multiple of 5
I am facing hard time to implement a program for finding the path to a node from b-tree root which is a multiple of 5.
Example:
12
/ \
4 7
/\ /\
5 3 4 10
Consider this as ...
1
vote
1answer
174 views
Binary Representation of N-ary Tree
I am currently trying to make a tree structure with Nodes having an unknown amount of children but I also have to keep track of parent Nodes. I looked at this question N-ary trees in C and made a ...
1
vote
1answer
277 views
Applications of preorder, postorder traversals of a Binary Tree?
Are there any specific applications of preorder and postorder traversals of a Binary Tree ?
PS: Application of Inorder Traversal : It is used to print the sorted numbers from a BST.
0
votes
2answers
183 views
Binary tree insertion sort in C
Hey can anyone explain how to sort a binary tree using insertion sort in C language where time complexity is an issue. I am just learning to code. Thank you guys!
0
votes
1answer
38 views
Representing Rooted Tree in terms of class
I am facing difficulty in understanding the following paragraph taken from Representing Rooted Trees. It basically shows two methods for representing trees. G & T is somewhat clear to me, but the ...
0
votes
2answers
142 views
How to find and return bottom-most node of a binary tree? binary search tree?
I have a binary tree with the only condition that there is a single node in the deepest level. The nodes in the tree have the parent property (as well as left, right, data)
Is it possible to ...
0
votes
3answers
151 views
Find the diameter of a binary tree
I am trying to find the diameter of a binary tree (Path length between any two nodes in the tree containing maximum number of nodes.) in java.
my code snippet:
public int diametre(Node node, int d)
...
0
votes
2answers
317 views
print all root to leaf paths in a binary tree
i am trying to print all root to leaf paths in a binary tree using java.
public void printAllRootToLeafPaths(Node node,ArrayList path)
{
if(node==null)
{
return;
}
...
0
votes
1answer
118 views
Building a binary tree from a recursively defined string notation
I've been struggling with this for several hours now, so after Googling incessantly and finding little to go on, I finally decided to see what kind of help SO might offer me on a piece of my latest CS ...
1
vote
1answer
159 views
Tree reconstruction using preorder and inorder in COMMON LISP
As I have been learning LISP and reading practical common lisp I have found problems and tried to solve them I have got stuck on this particular problem and am unsure of how to approach it so would ...
0
votes
2answers
112 views
How to make binary tree from edges? [closed]
I am getting all the edges of the binary tree from the input in the from
parentId childId
e.g. 0 3 // means from node 0 to node 3
// 0 does not mean root of the tree.
How do i construct ...
1
vote
0answers
173 views
Binary trees in Mysql [closed]
I'm developing a software to store and read dogs pedigree (php and mysql).
The most used functions are to search a node and to print the following 4-5 levels, and to find a parent if exist.
An other ...
2
votes
1answer
179 views
Definition of balanced binary search tree
So, i have been studying about the balanced binary search tree.
I've googled it, and this is what i've found :
Binary tree in which the depth of the two subtrees of every node differ by 1 or less ...
0
votes
2answers
124 views
Print tree program [closed]
i need help in solving the following test question (it's not a homework or assignment)
the user can input from the console values from 1-9 and the program accepts 3 numbers one number per line.
if the ...
1
vote
1answer
219 views
Find tree height given preorder [closed]
Given a preorder traversal of a full binary tree, where each node is labeled either a leaf node or an internal node, is there a good algorithm to find the height of the tree? For example, if N ...
0
votes
3answers
82 views
how can get a tree with only one tree traversal?
consider I want to transfer a binary tree in a serialised way and I have only one string to pass that tree and I can use the help of only one traversal, is there any way I could do that?? - (was ...
3
votes
2answers
78 views
Why are these trees the same as ordered trees but different as binary trees
I don' get it? Shouldn't they be different as ordered trees too? because the ordering is different
0
votes
1answer
261 views
path with max sum in tree
Given a Binary tree with -ve and +ve value's. print all path's froom root to any node with max sum.do it in O(n). only one traversal of tree.
Efforts :)
1) ...
1
vote
2answers
366 views
Is the root node an internal node?
So I've looked around the web and a couple of questions here in stackoverflow here are the definition:
Generally, an internal node is any node that is not a leaf (a node with no children)
...
0
votes
2answers
136 views
Finding element in a binary tree
Assume I have a binary tree:
data Bst a = Empty | Node (Bst a) a (Bst a)
I have to write a function that searches for a value and returns the number of its children. If there is no node with this ...
0
votes
3answers
301 views
set position for drawing binary tree
I want to drawing a binary tree with an graphical framework(Qt) like this:
9
/ \
1 10
/ \ \
0 5 11
/ / \
-1 2 6
but I have a problem to set X ...
2
votes
1answer
313 views
PostOrder traversal of binary tree jumps inconsistently to either sibling or parent
When entering the following values ({18, 26, 52, 78, 45, 16, 67, 58, 73, 11}) in a Binary Tree , you receive this tree:
Both PreOrder and InOrder traversals work as I expect them to. However, when ...
4
votes
1answer
365 views
C standard binary trees
I'm pretty much of a noob in regards to C programming.
Been trying for a few days to create a binary tree from expressions of the form:
A(B,C(D,$))
Where each letters are nodes.
'(' goes down a ...




