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)

0
votes
0answers
21 views

Logic Error with an AVL tree

I am tryintto implement an AVL tree using JAVA. I have followed this code as an example: http://knowledgejunk.net/2010/11/09/avltree-java-source-code/ But mine is a bit different, I want to read ...
-2
votes
0answers
28 views

some questions about binary search tree

A complete binary search tree CBT of 315 nodes of integers is store in an array (assuming that the storage will start at index 1). is level of a binary tree equal to depth of a binary tree? how many ...
0
votes
3answers
32 views

Calculating the height of a binary tree

I need help with the theory on calculating the height of a binary tree, typically the notation. I have read the following article: Calculating height of a binary tree And one of the posts gives the ...
1
vote
1answer
55 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
74 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
1answer
136 views

Turning a tree into a heap in haskell

I need to make an implementation of a priority queue with a Heap Tree in Haskell, for example: Given a list: [3,2,7,8,4,1,9] 3 is the main root 2 is its left leaf 7 is its right leaf 8 is the left ...
0
votes
1answer
18 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?
2
votes
0answers
19 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
20 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
3answers
69 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 ...
0
votes
1answer
58 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). ...
-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
33 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
24 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 ...
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 / \ / \ / ...
0
votes
2answers
61 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. ...
3
votes
2answers
146 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 ...
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 ...
0
votes
3answers
61 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)) + ...
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 ...
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?
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 ? ...
2
votes
3answers
148 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
2answers
46 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, ...
1
vote
1answer
51 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?
4
votes
1answer
160 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
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
2answers
64 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 ...
0
votes
1answer
132 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
39 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
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
91 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
votes
1answer
49 views

Interactive/Visual Tutorial about Data Structures [Binary Trees]

I've spent hours searching this on youtube. Maybe you could recommend me something. I am searching some interactive/visual (could be a video) tutorial about Binary Trees at first. It could be ...
0
votes
1answer
43 views

Uniformly random with binary search

I would like to choose a random at uniform edge depending on its weight from a multigraph (weighted graph). I would like to make this like it is described in Kargers algo. The algo has two parts: ...
0
votes
0answers
32 views

Path to a leaf as a binary sequence

How can I print the path to a leaf as a binary sequence? Given the tree has a basic structure, like tupples within tupples: tree=(2,((4,5),3)) What must I do to get the path to '5', or ...
1
vote
1answer
42 views

Dealing with “Keys” in Binary Search Trees

Should I always, use some data as a key value while dealing with the Binary Search trees? I'm asking this becasue I would need key at some point of time if I want to search an element in the tree. Is ...
0
votes
1answer
35 views

Attribute binary code as the path from binary tree in Python

How can I attribute a binary code to a symbol, based on their path within a binary tree? In other words, a dictionary. Example of a tree: tree=[['a', 'p'], [[['n', 'u'], 'o'], ' ']] or if you ...
0
votes
0answers
51 views

Computing an expression tree recursively

I built a function that takes my expression tree and computes the values. My leaf nodes are either number or letters as keys, but have integers as their values. When I run the program, I get -74 as my ...
0
votes
1answer
55 views

Syntax Errors when implementing binary search tree (C)

I've been working on implementing a binary search tree in C for a homework assignment in my programming class. After writing this much of the code and compiling in Visual Studio 2010, I get numerous ...
0
votes
2answers
54 views

binary search tree of 20 elements

So this code for creating searching and removing nodes to a BST works great but only if it is of size nine how do i make it be of size 20 when i change the SIZE to 20 the programs does not go past ...
-3
votes
1answer
66 views

How do I write the Preorder Method for Binary Trees? [closed]

I am having a very hard time understanding this. My homework assignment is as follows (I input my homework assignment to let you fully understand my goal, not to have you do my homework assignment for ...
0
votes
0answers
14 views

Multiple menu options

Basically what I want to do is have a Menu with multiple sub menus. The user is presented with these options: "Buy" and "Inventory" This is held in a list, and the user can select either one. Lets ...
2
votes
1answer
134 views

Having difficulties with recursive tree traversal in functional programming; how do I avoid a StackOverflow?

I am struggling with the Scala course on Coursera, and I realised that I am having serious problems dealing with recursion, particularly tree traversal in a functional manner. To generalize the ...
-1
votes
1answer
27 views

validation an expression tree

I've almost got my validation function to work, but I just wrote the last part where it checks the internal nodes to make sure they're opperators. Without this part, the function checks the leaf nodes ...
0
votes
0answers
88 views

Making an infix expression Binary Tree

Today I am putting an infix expression into a binary tree by using a stack. This is what I have so far: public String binaryTreeMaker(String infixExpr, int i)//converts and infix to postfix { ...
-2
votes
3answers
33 views

trying to validate leaf nodes in expression tree

I've made a boolean function that validates the leaf nodes in my expression tree. If the nodes are any operator, it returns false. Else, it should return true. It calls itself recursively...which is ...
0
votes
1answer
115 views

Binary Tree Postfix Calculator

I'm making a Postfix calculator where I must use stack objects and a Binary tree during the translation of an expression from infix to a parse tree during the evaluation of a postfix expression. Can ...

1 2 3 4 5 28