0
votes
1answer
61 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
2answers
62 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. ...
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
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: ...
1
vote
2answers
85 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
2answers
65 views

How to save the memory when storing color information in Red-Black Trees?

I've bumped into this question at one of Coursera algorithms course and realized that I have no idea how to do that. But still, I have some thoughts about it. The first thing that comes into my mind ...
2
votes
1answer
100 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
2answers
184 views

Number of binary search trees over n distinct elements

How many binary trees can be constructed from n distinct elements? And how can we find a mathematically proved formula for it? Example: If we have 3 distinct elements, say 1, 2, 3, there are 5 ...
0
votes
1answer
46 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
43 views

construct and print elements of a Binary Tree (unbalanced binary tree), from left to right, and from bottom-up

please let me know how to achieve the following: I have a binary tree, which is unbalanced, having both the left & right sub trees. I have to print the values of nodes of that unbalanced binary ...
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
3answers
109 views

Recursive algorithm to find the smallest element [closed]

I want to write a recursive algorithm to find a smallest element. I draw a binary tree in which leaf represents the elements and internal nodes are smallest elements after comparison. Input to algo ...
0
votes
1answer
67 views

What is the most difficult operation in binary trees?

I have investigated this BSTs and found answer in Algorithms, Part I lectures. As mentioned in lectures delete is the most difficult operation in terms of implementation and in terms of efficiency. ...
4
votes
4answers
105 views

Balanced binary trees versus indexed skiplists

Not sure if the question should be here or on programmers (or some other SE site), but I was curious about the relevant differences between balanced binary trees and indexable skiplists. The issue ...
2
votes
3answers
78 views

Getting the Average Height of a Binary Search Tree

I have come to a problem statement where the tree is in the form: 4 2 6 1 3 5 7 It said that the average height is 1.4285715 Based from what I know, the average height of a tree is ...
1
vote
2answers
76 views

binary tree traversal why need to check pre->right != current

In a binary tree traversal algorithm like below cited from this question, why do we need to check the second condition pre->right != current? is this a loop condition? when would this happen? ...
9
votes
3answers
245 views

Sorting the elements in Binary trees

Here is a question I recently have for my interview. A binary tree is given with a condition that each left child is 1 smaller than root and right child is 1 larger. Here is a sample tree ...
1
vote
2answers
89 views

Binary Tree Search & Tracking

I have a binary tree of node containing an integer and a char. I'm working on Huffman Coding and I want to get the binary presentation of the nodes. A '0' is appended to the string for every left ...
0
votes
1answer
351 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 ...
1
vote
2answers
434 views

Finding the Longest Path in a Binary Tree

I want to find the longest path in a Binary Tree. I plan to add them to a list, that way I can tell my enemy character to take the long path on easy mode. private static <T> ArrayList<T> ...
-2
votes
3answers
94 views

What's the running time of computing the size of subtree of every node in a binary tree

When I was doing a binary tree exercise, I had one question that confused me: Given a binary tree (via a pointer to its root) with n nodes. Let size(n) denote the number of nodes in the subtree ...
0
votes
4answers
139 views

Simple linear equation with binary search? [duplicate]

Is there a way to solve a simple linear equation like -x+3 = x+5 Using binary search? or any other numerical method? BACKGROUND: My question comes because I want to solve equations like ...
0
votes
1answer
93 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
2answers
152 views

Finding left most node in a binary tree

I need to find the left most node in a binary tree. It may sound naive but it isnt. I tried this but i think it will fail : Node* findLeftMostNode(Node* root){ if(root->left==null) ...
2
votes
1answer
75 views

What type of traversal should be used to find the sum of a binary tree?

The following question appeared on a test my instructor gave a couple of years ago. He provided an answer, but did not provide a satisfactory explanation. I have googled this topic, but I didn't ...
1
vote
3answers
257 views

How do I get the root of a binary tree without having parent links in a tree node?

I have as an assignment to do the following: Write, document (internally) and test a Java program to solve the following problem: Implement the binary tree ADT using a linked representation ...
3
votes
1answer
334 views

non-recursive method for evaluating a binary tree representing an arithmetic expression

As the subject states, I need to describe a method for evaluating a binary arithmetic expression tree without using recursion. No other details or instructions are given to me. As far as my ...
1
vote
1answer
288 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
340 views

Height of binary search tree iteratively

I was trying out an iterative method to find the height/depth of a binary search tree. Basically, I tried using Breadth First Search to calculate the depth, by using a Queue to store the tree nodes ...
0
votes
2answers
143 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 ...
4
votes
2answers
296 views

Binary Tree : Advantages of pre-order ,post-order traversals in Binary Tree?

Inorder traversal of a Binary Search Tree yields nodes in increasing order. But what advantages do pre order and post order traversals have on any binary tree? EDIT:What I mean by advantages is : ...
4
votes
3answers
354 views

Binary Tree : Non recursive routine to print ancestor of a node in a Binary Tree?

I have to write a non recursive program to print the ancestor (parent of parent) of a given node in a Binary Tree. What logic should I use ?
1
vote
1answer
184 views

Binary tree properties - Balanced

i am trying to understand the binary tree properties. But i am not sure about one thing: The def. of a Binary trees states that: A binary tree is balanced if for each node it holds that the number ...
0
votes
2answers
114 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
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 ...
1
vote
1answer
225 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 ...
1
vote
2answers
224 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 ...
0
votes
1answer
216 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
466 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
80 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
268 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
2answers
100 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
votes
1answer
134 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
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 ...
0
votes
4answers
91 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 ...
-2
votes
1answer
187 views

How to delete a single node from a Binary Search Tree using Single Linked List? [closed]

I am trying to delete a particular give node from the Binary Search Tree using Single Linked List. But I am not able to figure out how to adjust the hierarchy after freeing a node. I didn't add code ...
0
votes
3answers
308 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 ...
1
vote
2answers
331 views

Printing Successor and Predecessor in a BST

My problem is as follows: I have a binary search tree with keys: a1<a2<...<an, the problem is to print all the (a_i, a_i+1) pairs in the tree (where i={1,2,3,...}) using a recursive ...
0
votes
1answer
468 views

Implementing BinarySearchTree using Single Linked List

I have the below code which I am using to implement BinarySearchTree. Somehow it doesn't build the binarytree.Can anybody help what is the issue ? typedef struct BinarySearchTree { struct ...

1 2 3 4 5 7