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.

learn more… | top users | synonyms (1)

6
votes
5answers
2k views

Finding if a Binary Tree is a Binary Search Tree

Today I had an interview where I was asked to write a program which takes a Binary Tree and returns true if it is also a Binary Search Tree otherwise false. My Approach1: Perform an inroder traversal ...
-1
votes
1answer
15 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
3answers
70 views

Finding Maximum of an interval in array using binary trees

I'm studying Binary trees! and i have a problem in this Homework. I have to use binary trees to solve this problem here is the problem : You are given a list of integers. You then need to answer a ...
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 ...
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
vote
0answers
18 views

Is there any exercises for binary tree with answers online? [closed]

I've practiced some binary tree problems from http://cslibrary.stanford.edu/110/ and want to practice more. It's a very good resource since there are answers. Is there anything like this online?
0
votes
1answer
18 views

Binary Tree (Not Binary Search Tree) Creating New Node and Children

I am trying to implement a method to create a node to insert into a binary tree (not bst). struct node{ struct node *left; int data; struct node *right; }; typedef struct node ...
0
votes
2answers
18 views

Binary tree node keeping reference to its parent

Is it 'traditional' (or 'ethical') for a Node in a binary tree to keep a reference to its parents? Normally, I would not think so, simply because a tree is a directed graph, and so the fact that the ...
0
votes
4answers
4k views

Difference between “Complete binary tree”, “strict binary tree”,“full binary Tree”?

I am confused about the terminology of the these trees, I have been studying the Tree,and didn't able to distinguish between there tree viz. a) Complete Binary Tree b) Strict Binary Tree c) full ...
0
votes
2answers
23 views

sorted result of inorder traversal on binary tree

I have a question about Binary Trees: There is a binary tree T1 with n members. When we run inorder traversal on T1 then we get a series from 1 to n (1,2,3,...n). Now is T1 a BST (Binary ...
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 ...
0
votes
2answers
42 views

Exploring a binary search tree

I figure a binary search tree is the simplest example, but really I would like to know how to explore a ternary search tree or some variety of tries. I don't have any experience with these, but I ...
0
votes
1answer
57 views

Trees and priority queues

I'm trying to solve an exercise which results to be a little bit difficult since I have to implement a priority queue starting from a template class of a tree (kind of RedBlack or BinarySearch Tree). ...
0
votes
3answers
64 views

Printing a binary tree in Java [duplicate]

I'm trying to implement a Binary Tree, and for ease of debugging, I want to be able to print the tree so it actually looks like a tree. For example: 50 42 71 31 ...
7
votes
5answers
1k views

Construct a binary tree such that the Post-order traversal should give the sorted result

I know that In-order traversal(VISIT LEFT, VISIT ROOT, VISIT RIGHT) on a binary search tree gives me a sorted result. But I need to do a Post-order traversal (VISIT LEFT, VISIT RIGHT, VISIT ROOT) on a ...
7
votes
7answers
18k views

With ' N ' no of nodes, how many different Binary and Binary Search Trees possible?

For Binary tree: You no need to consider tree node values, I am interested about different tree topologies with 'N' nodes. For Binary Search Tree: We obviously consider tree node values.
-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
1answer
31 views

Mirror function for Binary tree in Java

QUESTION : Design a mirror method that computes the mirror image of a binary tree. What is wrong with my code?? This makes sense to me, however the only example that passes is my Leaf only example: ...
0
votes
2answers
36 views

Preorder traversal visualization of binary tree

I've decided to take the code from http://rosettacode.org/wiki/Tree_traversal#C.2B.2B and visualize it using SDL. The ASCII graphic on the page looks like: 1 / \ / \ / ...
15
votes
19answers
22k views

What is validating a binary search tree?

I read on here of an exercise in interviews known as validating a binary search tree. How exactly does this work? What would one be looking for in validating a binary search tree? I have written a ...
1
vote
4answers
150 views

elegant solution to compare 2 binary tree's, and returning false at the earliest time

I want to compare 2 binary tree's (in-order), and I want to return as early as possible if they are not the same. I know you can just traverse both tree's and then compare the output, but I want a ...
2
votes
2answers
128 views

Micro optimisations iterating through a tree in C#

I'm working on a massive number crunching project. I've been optimising everything since the start as I knew it would be important. Doing performance analysis my code spends almost 40% of it's life in ...
0
votes
4answers
428 views

length of binary tree

What do we mean by length of binary tree - number of nodes, or height of tree? Thank you
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 ...
2
votes
1answer
97 views

Adjust Range Search of BinaryTree to get the Outer Elements

I have a RedBlack [Balanced, sorted] Binary Tree and I am searching it to find all the values within the range [lower, upper]. public IEnumerable<TData> Range( BinaryTree<TData> ...
5
votes
1answer
521 views

How to find the deepest path from root made up of only 1's in a binary search tree?

We have a binary tree (not a BST) made up of only 0s and 1s. we need to find the deepest 1 with a path from root made up only of 1's Source : Amazon interview Q
3
votes
2answers
145 views

How can I convert this binary recursive function into a tail-recursive form?

There is a clear way to convert binary recursion to tail recursion for sets closed under a function, i.e. integers with addition for the Fibonacci sequence: (Using Haskell) fib :: Int -> Int fib ...
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. ...
2
votes
4answers
41 views

binary tree mapping database query

I got to develop a user chain as shown in the figure. At level zero it has one member, level one two, level two will have 4, level 3 has 8 members..like wise 9th level will have 512 members and it is ...
4
votes
2answers
1k views

Binary tree from in-order and level-order traversals?

Can we prove that one can unambiguously construct a binary tree from its in-order and level-order traversals? I am thinking of a proof by induction on number of levels. Base case: trees with 1 or 2 ...
2
votes
2answers
93 views

index function for balanced binary tree

I have problem, i can't figure out how i must decide what sub-tree my function indexJ must to choose at the each step walks through the my balanced binary tree - JoinList. The idea is to cache the ...
1
vote
6answers
714 views

Binary tree Basics in C++

I have a binary tree data structure of: //Declare Data Structure struct CP { int id; //ID of the Node int data; //Data of the Node CP * left; //Pointer to the Left ...
0
votes
3answers
60 views

What is the maximum number of comparisons required to find a key in a binary tree having 191 nodes and whose height is equal to nine?

I know that for a completely filled binary tree, the height of that tree is equal to floor(log2(N)), and that the maximum number of comparisons to find a given key is simply h+1, or floor(log2(N)) + ...
0
votes
0answers
9 views

update heap when changing one element in O(lg(n))

I have a binary-heap and I want to update just an element. Is there any way to update without bubble up/bubble down?
1
vote
3answers
2k views

Number of leaf nodes in a binary tree

I have read that the number of leaf nodes in a tree of height h is at least h+1 But as shown here in the pic the tree is of height 2 but the number of leaf nodes is just 2 (at least) and not 3. ...
8
votes
7answers
17k views

Finding height in Binary Search Tree

Hey I was wondering if anybody could help me rework this method to find the height of a binary search tree. So far my code looks like this however the answer im getting is larger than the actual ...
0
votes
1answer
39 views

Does a Huffman Binary Tree have to be proper?

All the examples I could find for Huffman coding have had an even number of chars to work with. If it is an odd number of chars can the last internal node added to the tree just have a single child ? ...
0
votes
2answers
45 views

How do I use a Scanner class to Print a plain text file?

I'm attempting to create a Scanner Class which is supposed to output a plain text file which contains the following information; PersonName, Address, City, Phone_Number, PersonName, Address, City, ...
3
votes
2answers
230 views

Different binary tree's definitions in Haskell: which wins?

I was used to the following Tree definition: data Tree a = Empty | Node a (Tree a) (Tree a) until I ran into this one somewhere: data Tree a = Empty | Leaf a | Node a (Tree a) (Tree a) which ...
1
vote
1answer
50 views

Construct binary tree from prefix order expression

How should we construct the binary tree of the following "prefix" order expression? ( - * / 8 + 5 1 4 + 3 - 5 / 18 6 ) Is there any rule to follow for drawing the tree?
1
vote
5answers
2k views

C++ Finding largest number in binary tree

Binary tree of numbers, with a node structure type def numbernode { unsigned value; numbernode * left; numbernode * right; } and an external pointer (to the root node) write a function ...
0
votes
2answers
63 views

Path of the diameter of a binary tree

I have a binary tree and a method for the size of the longest path (the diameter): int diameter(struct node * tree) { if (tree == 0) return 0; int lheight = height(tree->left); int ...
1
vote
1answer
58 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
2answers
21 views

unable to add a node in avl_tree

I have written a code in C# for the implementation of AVL_trees. I am having some problems with nodes that's why I am unable to insert data in the nodes. Below is my code. public class avl_node { ...
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 ...
1
vote
2answers
38 views

Saving all nodes in binary tree based Python program

I have been trying to add a way of storing and retrieving knowledge gained by the program animal.py, which is a "20 questions" learning algorithm that works via a binary decision tree. (Please click ...
0
votes
2answers
40 views

C: Why can't I change the top binary tree node in a non-main method?

I think this is more of a pointer problem than a binary tree problem. As an exercise I was re-creating a guessing/learning game in C using a binary tree. I had a method, traverse, which would go ...
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 ...
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 ...
33
votes
2answers
8k views

Explain Morris inorder tree traversal without using stacks or recursion

Can someone please help me understand the following Morris inorder tree traversal algorithm without using stacks or recursion ? I was trying to understand how it works, but its just escaping me. 1. ...

1 2 3 4 5 28