A binary tree is a tree data structure in which each node has at most two child nodes, left and right. Nodes with children are parent nodes and the node without a parent is the root node.
2
votes
1answer
185 views
construct a binary tree from in-order and level-order traversal
Firstly, I'd like to state this is not a homework. I'm preparing an interview and encountering this problem. I guess we can pass the definition of in-order and level-order traversal. :-).
For ...
2
votes
0answers
127 views
Tree Traversal, generate a linkedlist from tree preorder and write test case for it
I am looking for best solutions for the following question.
We are given a binary tree, we need to generate a linked list from the tree using pre order traversal. Also write a test case to check ...
0
votes
1answer
29 views
How to print a description string near a node?
I have recently started to use the DOT language to describe the structure of a binary tree. The following example allows to draw a binary tree having numbers as labels inside each node.
graph tree {
...
0
votes
0answers
26 views
Binary Trees: Number of nodes with 2 children
I have read that if a binary tree have i' leafs, then it have i'-1 internal nodes with 2 children.
Does any have a good argument for why this is true?
0
votes
1answer
193 views
How to do tail recursion for a binary tree?
If you have a binary tree, how can you iterate through (using in order) it using tail recursion? I know that tail recursion involves you to calculate the new value as you iterate, and then when you ...
0
votes
1answer
52 views
Tree,Nodes,Type of Trees
I want to create a tree that detect if the insert is a Object of type Characters it will compare each one and decide where to insert [ right or left ],( i know it can detect by position in ascii ...
2
votes
1answer
52 views
BinaryTree - with switch case
I played a bit with binary trees and built a menu which the user chooses whether to build a binary tree, insert a value to the binary tree he built or delete it, when I clicked on the creation of a ...
0
votes
1answer
407 views
Reading a binary tree from file
I've been working on the input from file and think I have the logic right, but my nodes aren't linking properly. I'm able to set the root correctly and the program is able to walk through the string ...
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
1answer
213 views
C++ Binary tree build why wont this work?
hello all I really appreciate any help, thanks.
first off I am building a binary tree, but cant seem to build it. In the recursive process the insertHelper seems to recognize a larger root in first ...
0
votes
2answers
113 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 ...
0
votes
2answers
147 views
C++ deleting minimum element in binary tree
Can anyone explain to me why the delete_min() function does not work? I have been trying to figure this out for hours now.
I have tried different variations of the function, but it seems to either ...
0
votes
1answer
200 views
C++ delete min element in binary tree
I have the following function for deleting the min element:
int BinaryTree::delete_min_helper(TreeNode *node){
while(node->left != NULL){
node = node->left;
}
if(node == root){
...
0
votes
1answer
138 views
Difference between Complete binary tree and balanced binary tree
What is the difference between a balanced binary tree and a complete binary tree? Is it true to say every complete binary tree is a balanced tree? How about the other way around?
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 ...
0
votes
2answers
146 views
Performance of Morris Traversal vs recursive In-Order in a binary tree
I am doing some preparations before going to interviews and i just learned about Morris Traversal.
This is Morris Traversal code which i wrote in Java(its working):
protected void morrisTraversal(){
...
2
votes
2answers
151 views
What is a good data structure for finding which region contains a point?
I'm looking for a data structure that supports finding which of "n" regions contains a point "p". I was looking at Quadtree's and R-trees however I don't think they fit exactly what I'm looking for.
...
0
votes
1answer
122 views
A call stack simulation for recursive binary tree traversal algorithms
Does anyone have a link to a good call stack simulation for recursive binary tree traversal algorithms. I have this so far but the call stack simulation is not included. I would appreciate something ...
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
220 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
1answer
202 views
Check if a binary tree is balanced (Big-O)
Check if a binary tree is balanced.
The source code on the CTCI 5th:
public class QuestionBrute {
public static int getHeight(TreeNode root) {
if (root == null) {
return 0;
}
...
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 ...
1
vote
2answers
223 views
Minimum value not in a binary tree?
I'm trying to find a way a way to find the minimum positive ([0, INT_MAX)) (the largest integer) value not in the binary search tree. The tree has all positive integers. I was thinking of traversing ...
-1
votes
3answers
434 views
Implementing the Binary Tree in C
I am trying to implement the Binary tree in C.Firstly inserting the values and then traversing them into the Preorder.But when i call the function preorder() then it's giving me infinite loop with ...
0
votes
1answer
429 views
Find average value of binary tree c++
So I'm trying to write a recursive function to return the average value of a binary tree of values in c++. Here's what I have, that doesn't work:
double avg(bNode* root)
{
if(!root) return 0;
...
0
votes
1answer
211 views
Largest Subtree Which is a Binary Search Tree (BST)
Given a binary tree, I want to find out the largest subtree which is a
BST in it.
This question is duplicate of Finding the largest subtree in a BST, where 1337c0d3r gives a O(n) solution by ...
0
votes
2answers
424 views
Java binary tree add method over writes root
I am trying to write a binary tree and the add method is continually overwriting the root of the tree. I have two methods a recursive add method that takes in a String and a Node and then a regular ...
0
votes
2answers
455 views
Vertical Sum in a given Binary Tree
Given a Binary Tree, find vertical sum of the nodes that are in same vertical line. Print all sums through different vertical lines.
To understand what's same vertical line, we need to define ...
3
votes
2answers
68 views
Error returning a pair in cpp
I have the following code:
return new std::pair<BST<Data>::iterator(cursor), true>;
This results in the following errors:
could not convert '(operator new(4u), (, ((int*))))' from ...
-2
votes
1answer
247 views
Check if a binary tree is balanced with iterative function?
I need to implement a non-recursive function to determine if a binary tree is balanced or not.
Anyone?
Thanks!!!
0
votes
4answers
81 views
std::map get the lowest n elements time
std::map should be implemented with a binary search tree as I read in the documentation and it sorts them too.
I need to insert rapidly and retrieve rapidly elements. I also need to get the first ...
3
votes
2answers
488 views
Binary Tree in Python
This is my code-snippet for a Binary Tree implementation in Python. This WORKS when I run the PreOrder function.
class Node:
def __init__(self,data):
self.left = None
self.right ...
3
votes
2answers
79 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
262 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) ...
3
votes
3answers
99 views
Maximum projection on x-axis of a binary tree
Given a binary tree in a coordinate plane with its root having coordinates (x,y) . We need to find the maximum projection on x-axis of this tree. That is , basically we need to find the MAXIMUM width ...
1
vote
2answers
370 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)
...
-1
votes
1answer
130 views
Runtime of Morris inorder tree traversal algorithm
I just learned about the Morris inorder tree traversal algorithm. But I haven't found any analysis of the running time of this algorithm. Can someone give a runtime analysis of this algorithm? This ...
1
vote
1answer
117 views
What is the Ruby equivalent of Java's TreeSet<Integer> (self balancing binary tree)?
I want to use a self balancing binary tree to play around with some algorithms, but I'm having difficulty finding the Ruby equivalent of Java's TreeSet (or C#'s SortedSet).
I have found web code ...
0
votes
4answers
138 views
If one binary tree is the subtree of another tree
I wrote this function to check if n2 is the subtree of n1. I use recursion, but when I tested it using two trees, it showed me the wrong answer (expected true, but it actually returned false).
I ...
2
votes
2answers
353 views
Making a linked list from a binary tree using Preorder Traversal
I want to add elements to a Linked List while Preorder Traversaling on a Binary Tree. I do not want to destroy the BT, just make a copy of the elements in a linked list. This is my code snippet.
void ...
1
vote
2answers
171 views
checking subtrees using preorder and inorder strings
A book I'm reading claims that one way to check whether a binary tree B is a subtree of a binary tree A is to build the inorder and preorder strings (strings that represent the inorder and preorder ...
2
votes
2answers
65 views
A suitable data structure implementation for incrementing values in sparse indices in Matlab
Currently, I am using cell C which is the size of 1 x H, where H is a very huge number. This cell is mainly used to quickly store and increment some values in very sparse indices in O(1) time. For ...
0
votes
4answers
284 views
Iteratively accessing all binary tree nodes?
I have a Binary Tree which has a word on each node.
In another Class I need to access the nodes one by one and then manipulate the words. What is the best way to access the nodes one by one from ...
1
vote
2answers
290 views
Coding a classification tree… how to store?
I'm looking for a basic pseudocode outline here.
My goal is to code a classification tree from scratch (I'm learning machine learning and want to get intuition). But my training data is huge: 40000 ...
-1
votes
1answer
105 views
Saving a binary search tree to disk
When trying to save the contents of a tree to file, nothing is saved and I don't know why.
These are the function calls I'm making:
insert(tree, cust.id, filePos);
saveTree(tree, "cIndex.dat", 0);
...
1
vote
1answer
101 views
I can't for the life of me figure out why my C program is crashing
I have an assignment for uni in which I have to implement a binary search tree. It has to take information and write that to disk, and keep an index stored in the tree. However, whenever I call a ...
0
votes
1answer
122 views
Loading Customers From File To A Binary Tree using C [closed]
Basically, I need to load all the customers from customers.dat and put them in a binary tree. Also whenever a user adds a customer it should also be added to the binary tree. I managed to code the ...
0
votes
1answer
29 views
Batch Update products
I'm doing a orders program and I have a binary search tree for products, item contain product name, stock quantity, order quantity, and price. When I creeate an order, the order quantity in the ...
0
votes
4answers
90 views
What's the point of a key-value pair in a binary search tree?
What exactly is the point of having a key-value pair in a binary search tree? Can someone give an example of one such instance? Because in the stl set container, I don't explicitly assign a key-value ...



