A binary search tree is a data structure which consists of a root node with left and right child nodes. The left node has a smaller value than its root node, while the right node has a larger value than the root node. The children of the root node follow this same pattern. This gives us a tree ...
0
votes
1answer
27 views
printing optimal binary search tree in preorder dynamic programming algorith
I have just finished up computing the average cost of an OBST and I know I computed it correctly. My next task is to print the tree in preorder. I have an attempt at this using recursion but can't ...
0
votes
0answers
24 views
Problems calculating Node spacing for GUI binary tree
I am trying to build a binary search tree in GUI.
Finding the y coordinates for each node is pretty easy, but I am having problems with calculating the x coordinate. I was wondering if someone can ...
1
vote
1answer
66 views
BST in array transversal
I have the following implementation of a binary tree in an array;
32
/ \
2 -5
/ \
-331 399
The data is grouped 3 indexes at a time. index%3==0 is the value of the node, ...
1
vote
1answer
20 views
time complexity of the following algorithm
Suppose a Node (in a BST) is defined as follows (ignore all the setters/getters/inits).
class Node
{
Node parent;
Node leftChild;
Node rightChild;
int value;
// ... other ...
0
votes
0answers
46 views
leaves of binary search tree are lost after print is called
I have a program that keeps track of students information. The gui allows the user to insert, delete, retrieve, update and print. All the aspects work but the print function. It will print once ...
-1
votes
0answers
27 views
c++ Binary search tree; remove: run time stack
Inside tree.H
template <class Whatever>
class Tree {
friend struct TNode<Whatever>;
long occupancy;
TNode<Whatever> * root;
unsigned long tree_count;
...
0
votes
1answer
36 views
Confusion in the differences between hashmap and hashtable
I have a confusion:
I have read in many posts that Hash-maps are implemented as binary search trees which makes the various operations time complexity of logarithmic order.
Hashtables on the other ...
-1
votes
0answers
18 views
BST construction just from preorder or postorder traversals…using a simple BST construction function
I couldn't comprehend the fact that when the preorder traversal of a BST was given to a BSTconstruction function value by value... Then the resultant tree was the original tree from which the ...
2
votes
2answers
54 views
clojure immutable binary search tree insertion
I'm currently trying to implement an immutable BST in clojure.
This is my make-tree function:
(defn make-tree [v] {:v v :l nil :r nil})
and insertion:
(defn insert [tree v]
(if (nil? tree)
...
1
vote
2answers
57 views
C Binary Search Tree pre-order traversal with recursion
I am working on a function that searches through a binary search tree in C for a name that is passed in with the function. However, I am stuck on how to format my loop so that the recusion doesn't ...
0
votes
0answers
31 views
Draw a binary search tree in wpf [closed]
I have an implementation of a BST that represents the direction of certain points. So I wanted to know how can I represent the tree as a chart.
class Node
{
//...
public Node left, ...
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 ...
0
votes
1answer
30 views
Java implementation of BST delete node
I'm trying to make a method to delete a node in a BST and its not working..I'm using a Node class I made myself.. tried debugging but didnt get much help on addressing the error in the code.
...
0
votes
1answer
48 views
Binary Search Tree to list in Haskell
I've been given a BST in haskell that is capable of adding, removing, lookup, findingMax, and removingMax. I have to make a function that converts the data to a list structure.
bstToList:: (BST k v) ...
0
votes
1answer
28 views
Inserting a value into a Binary Search Tree in Python
I am reviewing for my final and one of the practice problem asks to implement a function that puts a value into a binary search tree in Python. Here is the Tree implementation I am using.
class ...
0
votes
2answers
55 views
Templated binary search tree c++, unresolved external error
I am working on a template for a binary search tree and I am getting the error below. I know there are similar post but I can't figure this thing out. Templates are definitely a weak subject for me so ...
0
votes
0answers
29 views
Is there a way to never build an unbalanced tree? [duplicate]
I have written some python code that will take an unbalanced binary tree and balance it, however this has proven to take a long time with very large trees so I'm looking for an easier way...
I was ...
0
votes
0answers
8 views
How to make the two binary sort tree which has been completed into a AVL tree
I have known that we can iterate through the original tree,and to copy a AVL tree.But if I have a binary sort tree which is not a AVL,how can I Modify the original tree to make it directly into a AVL.
...
-2
votes
1answer
20 views
inorder successor of a node k code error [closed]
Can anybody tell me what am i doing wrong in this code which is trying to find the inorder successor of the a node in BST?
If i keep return type as void and print the value instead of returning it ...
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 ...
3
votes
4answers
82 views
Binary Search Tree C implementation
I recently wrote a fairly simple piece of code attempting to implement a Binary Search Tree in C with insertion, search, deletion and display operations. Unfortunately, the code does not seem to work.
...
-2
votes
0answers
12 views
Adding to a BST gives conversion error [closed]
When utilizing the following the code, we receive an error that states actual argument int cannot be converted to Flight by method invocation conversion Any thoughts on what this could mean? As far as ...
0
votes
2answers
27 views
Tree structure which sorts but retains original order of elements
I'm searching for a tree structure (like a binary tree) with the following qualities:
The elements in the tree can be traversed in order
The original order of elements can be retrieved
It can do the ...
1
vote
0answers
38 views
Java Binary Search Tree with JSS2 Homework
I'm just trying to add an element to a binary search tree but I get a NullPointerException.
I hate to ask but I really have had an awful teacher with the inability to clearly explain anything and ...
0
votes
2answers
36 views
Building BST in c++ with template
Im trying to implement a generic BST using template in c++.
However,
when I use gdb debug it. I find out that the whenever i called InsertNode,
it treat t as NULL.
When I step through the ...
1
vote
1answer
66 views
Binary search tree level order with parent node
Hi I am trying to print out level order of a binary search tree in the format (node element, parent node element). I am currently using queues to get the level order but I am having a hard time ...
0
votes
0answers
17 views
Family of AVL-trees in which a single removeItem operation may require Θ(lg(n)) rotations
I've came across this in a lecture note and I was wondering if someone can help me understand what's being asked -
Describe a family of AVL-trees in which a single removeItem operation may
...
0
votes
1answer
29 views
BinarySearchTree Boat Charter record keeping
This is for a Homework assignment
For this assignment that I have to do, I have to create a recordkeeping log for a cruise liner for a month (represented by the numbers 1-31). There is 1 cruise a day ...
1
vote
2answers
38 views
Find “nth” value in BST (C)
I have no idea how to go about this problem.
returns pointer to NAME_VAL pair which is the
nth entry in the sorted sequence.
if i=1, you return the min entry
if i=n, you return the max entry
if ...
0
votes
0answers
46 views
Least Common Ancestor of two node using inorder
I have written the code to find the LCA --
int result = 0;
private Boolean lca(Node root, int num1, int num2){
if(root==null){
return false;
}else{
if(root.data == ...
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
62 views
insertion binary search tree in C
I've been stuck on the insertion part of the binary search tree. I get so confused with nested structs. The basic idea of this program is to create a bst that is able to hold names and double values ...
1
vote
1answer
29 views
Making a template for BST class(different types of keys) in C++
I have written an implementation of BST-Tree but the key can be only string type. I would like to use that tree with other types of keys. I know that I would have to define a template, but do not know ...
0
votes
1answer
36 views
Calculating Max Imbalance of Binary Search Tree
I am currently coding a recursive method to return the max imbalance on the whole of a Binary Search Tree. I've very new to recursive programming so it's quite difficult to wrap my head around. The ...
1
vote
1answer
40 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
54 views
Errors with Implementing Breadth First Search (C)
I have been working on a Binary Search Tree and several of its function implementations for a school assignment. I just wrote my Breadth First Search functions and I am getting a segmentation fault in ...
-4
votes
0answers
40 views
Binary Search Tree Sum Function returning memory address
I have a binary search tree written in C.
Its an avltree.
You run it and start entering integer values.
I have created functions within the avltree to find height, element, Min, Max......
When I tried ...
1
vote
1answer
33 views
Infix, prefix or postfix order trough BST to get descending order of printed elements
I know that if we print the BST in the infix order i will get ascending order of elements the tree contains. How to get descending order? Using postfix or prefix?
0
votes
1answer
37 views
Clearing a binary search tree
I came across this method to clear a binary search tree. The code is given in a textbook. Why must a node temp be created and deleted in the end? Why not delete the subroot instead of making it null?
...
0
votes
1answer
56 views
Implementing Delete a Node in Binary Search Tree
Trying to delete a node from BST. After the execution, the node still persists in the tree. How can I implement it properly?
public void deleteNode(TreeNode removeNode, TreeNode root)
{
...
0
votes
1answer
22 views
Recursive Search in BST [closed]
TreeNode search(int value, TreeNode root)
{
if(root.data==value)
{
return root;
}
else if(root.data < value)
{
search(value, root.Right);
}
else if ...
0
votes
1answer
75 views
non recursive destructor binary search tree USING A STACK
I was thinking of making a non recursive destructor using a stack of binary node pointers. Would this code run?
binaryNode* parent = root;
while (!empty())
{
if (parent->left)
{
...
0
votes
2answers
53 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 ...
0
votes
1answer
43 views
Where to implement a stack class (to be used in a non recursive binary search function)
First of all, this sure is my homework but I will not be asking for code.
Inside a BST.h file, I implemented all the private members, functions and public functions. However, I am finding trouble ...
5
votes
1answer
71 views
What's the difference between `ImmutableSortedSet` and fsharp `Set`?
BCL has introduced a group of Immutable Collections
I am wondering what's the difference between ImmutableSortedSet and the native FSharp Set? It seems that the performance signatures of both are ...
0
votes
0answers
60 views
Binary Tree Search - delete a node without child
I have a binary tree search, and i try to remove it's biggest number in this tree. But it has crash while I delete a node without child. Totally don't know why. Here is my code.Please help me figure ...
0
votes
0answers
26 views
Seg-Fault at BST remove() Function
Basically the program consists of a BST class that points to the first node of a Binary Tree, and the Nodes are also their own class.
The BST calls this member function:
void remove(const T& x)
...
2
votes
1answer
36 views
Lisp Program producing contract violation
I wrote a lisp program that takes two parameters, a destination, and a map in the form of a BST. It searchings the BST for the destination number, and prints (found: path) if the destination is found. ...
0
votes
3answers
63 views
Test if two binary search trees has the same set of elements?
I am just starting out with java and recursive methods and i need some help:
I need to determine if two Binary Search Trees has exactly the same set of elements, regardless of the structure of the ...
0
votes
2answers
46 views
Not recognizing cout<< in my program?
I'm creating a program with multiple files and it's not recognizing cout<< in my tnode file. Can anyone locate where the problem is? Among other errors, I get this error "cout was not declared ...


