Tagged Questions

BST stands for Binary Search Tree.

learn more… | top users | synonyms

23
votes
4answers
2k views

Why is std::map implemented as red-black tree?

WHY is std::map implemented as a red-black tree? There are several balanced BST out there, what were design trade-offs in choosing red-black tree? Note, I'm not asking what are RB-trees or ...
11
votes
5answers
2k views

C# Binary Trees and Dictionaries

I'm struggling with the concept of when to use binary search trees and when to use dictionaries. In my application I did a little experiment which used the C5 library TreeDictionary (which I believe ...
8
votes
2answers
642 views

PHP daylight saving time detection

I need to send an email to users based wherever in the world at 9:00 am local time. The server is in the UK. What I can do is set up a time difference between each user and the server's time, which ...
6
votes
17answers
6k views

Real world examples of tree structures

I'm looking for some examples of tree structures that are used in commercial/free software projects, modern or old. I can see examples on wikipedia, but I am looking for more concrete examples and how ...
5
votes
4answers
355 views

How can I check if a BST is valid?

How can I check if a BST is a valid one, given its definition and using a generalized version of fold for BST? data(Ord a, Show a, Read a) => BST a = Void | Node { val :: a, left, right ...
4
votes
5answers
104 views

Stackoverflow exception when traversing BST

I have implement a link-based BST (binary search tree) in C++ for one of my assignment. I have written my whole class and everything works good, but my assignment asks me to plot the run-times for: ...
4
votes
2answers
233 views

Pseudocode for non-recursive implementation of tree height and isBST

I am in the process of converting recursive function for a BST to non recursive to help prepare for an interview. So far I figured out preorder, inorder, postorder, search, delete, insert, and ...
4
votes
2answers
226 views

Given a modified binary search tree, find k'th smallest element

Suppose in a given binary tree if each node contains number of child elements, then what is the optimal way to find k'th smallest element in the tree ? Please note this is not regular BST. Each node ...
4
votes
7answers
402 views

Finding the common ancestor in a binary tree

This question was asked to me in an interview: I have a binary tree and I have to find the common ancestor (parent) given two random nodes of that tree. I am also given a pointer to the root node. ...
3
votes
2answers
72 views

Recursive insertion of BST

I have made a function for insertion in BST using loops and it is working perfectly fine. Now, when iam writing to do it using recursion i don't know why it's not working properly, however the logic ...
3
votes
2answers
214 views

Binary tree implementation in C question as found in K&R

So I've been reading through the K&R C book and have a question.. in the 6th Chapter on structs on page 140-141, there is code that looks like this (I took out some of the more irrelevant parts) ...
3
votes
2answers
53 views

BST keep getting Segmentation fault

EDIT: running it through the gdb gives Program received signal SIGSEGV, Segmentation fault. 0x0000000000400e4c in Tree::findKey(std::basic_string<char, std::char_traits<char>, ...
3
votes
7answers
635 views

binary tree -print the elements according to the level

This question was asked to me in an interview: lets say we have above binary tree,how can i produce an output like below 2 7 5 2 6 9 5 11 4 i answered like may be we can have a level count ...
2
votes
2answers
63 views

Deleting the whole BST in java

I am looking over implementations of BSTs in Java, and when the whole tree needs to be deleted (for example using the clear() function), it recursively goes through the whole tree assigning node ...
2
votes
4answers
98 views

Algorithm and data structure to store First name and last name

Is there a efficient way to store first name and last name in data structure so that we can lookup using either first or last name? I would consider a binary search tree with first name. It would be ...
2
votes
3answers
112 views

using compareTo in Binary Search Tree program

I've been working on this program for a few days now and I've implemented a few of the primary methods in my BinarySearchTree class such as insert and delete. Insert seemed to be working fine, but ...
2
votes
3answers
121 views

Find swapped nodes in a BST

I am trying to write a program that can detect and print two nodes in BST that have been swapped. In a three level tree, I reached near to the solution using this approach. If ...
2
votes
1answer
121 views

Using python datetime.datetime.strptime on windows with BST timezone

I need to parse many different dates in many different formats. I am having trouble with the following and wondered if anyopne could explain why; The following works on a linux system: from datetime ...
2
votes
1answer
204 views

How to find the index of an element in sorted set?

I can find an element in a sorted set (backed by BST) in O(logN). Now I would like the index of this element. For example, in set {1, 3, 4, 10}, the index of 4 is 2 and the index of 1 is 0. ...
2
votes
1answer
385 views

Binary Search Tree Problem

Why the search and successor and predecessor returns -1? // BST.cpp : main project file. #include "stdafx.h" #include <cstdlib> #include <iostream> #define SIZE 10 ...
2
votes
3answers
471 views

how to rebuild BST using {pre,in,post}order traversals results

suppose we know 3 transverse results by using pre-order, in-order and post-order ways. Can we construct this BST? ALgorithms? Thanks. This is an on-site interview question asked by the company that ...
2
votes
1answer
477 views

Binary Search Tree in python not working

class Node: '''represents a new node in the BST''' def __init__(self,key): self.key=key self.disconnect() def disconnect(self): self.left=None; ...
2
votes
2answers
303 views

permutations of BST

Given an array of integers arr = [5,6,1]. When we construct a BST with this input in the same order, we will have "5" as root, "6" as the right child and "1" as left child. Now if our input is ...
2
votes
3answers
1k views

Having issues with Binary Search Trees in C#

I'm having a problem with the following code snippet: using System; using System.Collections.Generic; using System.Text; namespace trees_by_firas { class Program { static void ...
1
vote
2answers
36 views

Expression Tree printLevel() function

I am implementing a tree which is a Binary Expression Tree. The leaf nodes are numbers, non-leaf nodes are math operators. Succesfully implemented printInorder,PostOrder, PreOrder, evaluate. But ...
1
vote
2answers
39 views

R converting POSIXct dates with BST/GMT tags using as.Date()

I need to use as.Date on the index of a zoo object. Some of the dates are in BST and so when converting I lose a day on (only) these entries. I don't care about one hour's difference or even the time ...
1
vote
2answers
91 views

Why doesn't malloc work in my own implementation of BST tree

This is the node definition: typedef struct drzewo BST; struct drzewo { int key; BST *left; BST *right; BST *p; }; and I am trying to write add function: BST *add( BST *root, int ...
1
vote
0answers
34 views

Finding BST's height non-recursively?

This is a recursive method for finding the height, but i have a very large number of nodes in my binary search tree, and i want to find the height of the tree as well as assign the height to each ...
1
vote
1answer
41 views

find the smallest depth leaf node in bst

Need to get the leaf node that has minimum depth. I cannot think of a good way to do it without storing additional information in each node, please suggest, thanks very much.
1
vote
2answers
211 views

Lowest Common ancestor in a Binary Search Tree

Its pretty easy to find closest common ancestor in a BST if all the elements are distinct. But what if some of the values are same. Till now we were just comparing the data of nodes and that was it, ...
1
vote
2answers
67 views

insert on first BST giving end of no-void function errror?

So I am attempting to learn how to code my first BST, and it is hard.... I am already having trouble with just a few lines of codes. the problem is in the insert, but I have included everything so ...
1
vote
4answers
113 views

help with insert on first BST

EDIT there a small thing that I am missing!! the error is still there So I am attempting to learn how to code my first BST, and it is hard.... I am already having trouble with just a few lines of ...
1
vote
2answers
51 views

PHP5 adding 1 HR to blank time variables/calculations

I've recently upgraded to PHP5, and have noticied that within an application I've built there seems to be an extra hour added to some of my variables and caculations. I am using: ...
1
vote
4answers
141 views

getting segmentation fault in searching an element in binary search tree in c++

node ** BST :: searchElement(node **tree, int item) { if( ((*tree)->data == item) || ( (*tree) == NULL) ) return tree; else if( item < (*tree)->data) return ...
1
vote
1answer
256 views

Parsing and building S-Expressions using Sets and binary search tree

This is pseudo homework (it's extra credit). I've got a BST which is an index of words that point to the lines (stored somewhere else) that contain the words. I need to implement a way to search ...
1
vote
2answers
2k views

In Order Successor in Binary Search Tree

Given a node in a BST, how does one find the next higher key.
1
vote
1answer
278 views

Binary Search Tree Visualisation In Java

Hi I am currently doing the testing phase of my project(Algorithm Visualization Tool). I am getting a problem with the delete method of my BST. public boolean delete(String key) { boolean deleted = ...
1
vote
1answer
127 views

Creating a BST from an array

I need to create a binary search tree in the following (strange) way: I am given an array (A[n]). A[1] becomes the root of the tree. Then, I insert A[1]+A[2] to the left subtree (subtree1, used ...
1
vote
1answer
311 views

Text highlighting and cross-reference warning in Vim LaTeX with harvard.sty on MikTex 2.9

I used Vim LaTeX for six months with natbib and had no problems. But to use a new bib style file (i.e., rfs.bst) I started using harvard.sty, which gives me two minor problems: (1) syntax ...
1
vote
3answers
74 views

What is the problem with this function

hi I was writing a BST and wrote following function for adding Child. void addChild(T value) { temp = root; while(0 != temp) { temp1 = temp; if(value > ...
1
vote
2answers
1k views

Binary Search Tree in C

I'm a Python guy. Learning C language and I've been trying to implement Binary Search Tree in C. I wrote down the code, and I've been trying from few hours but, not able to get the output as expected. ...
1
vote
2answers
117 views

g_tree_insert overwrites all data

I wonder how I should use the GTree (from GLib) to store data? Every new value I insert into GTree with g_tree_insert routine is overwrite the previous one! GTree *tree; //init tree = g_tree_new( ...
1
vote
4answers
1k views

Calculate height of a tree

I am trying to calculate height of a tree. I am doint with the code written below. #include<iostream.h> struct tree { int data; struct tree * left; struct tree * right; }; typedef ...
1
vote
2answers
304 views

BST implementation

What's wrong with the following implementation of a binary search tree (BST)? I have been told that it is better to use pointer to a pointer to struct node as an argument in insert function. struct ...
1
vote
5answers
2k views

Calculate the depth of a binary search tree?

I am having difficulty calculating the summation of depths [the sum of the individual depths for all children of the root] for a given BST. I have the total number of nodes for the tree, and I am ...
1
vote
2answers
837 views

remove method in java BST

I do have a hw question...I have to write a remove method for a binary search tree, so far what I have is below but I keep getting a bunch of errors associated with my remove method and I'm not sure ...
1
vote
1answer
731 views

Proof for depth of balanced search tree

If T is a balanced BST with n elements, L its left subtree and R its right one, how can I prove that its depth is less than or equal to 2log(n) + 1? There is a proof by induction which I have but I ...
1
vote
2answers
1k views

dealing with duplicates in a bst

My bst has to be able to cope with duplicate entries. Does anyone have any strategies for how to go about this that doesn't require excessive amounts of code? I thought of consistently adding ...
0
votes
1answer
66 views

How to convert a list to BSTree recursively?

I tried to convert a List from 3{1{,2{,}},5{4{,},6{,}}} to a Binary Tree like this 3 1 5 2 4 6 I thought it would be easier to use recursion but I ...
0
votes
1answer
42 views

Why when printing the preorder traversal of a BST my program does nothing

I'm trying to make a code that allows me to enter a tree node and then indicate its preorder traversal, but do not understand what happens. What am I doing wrong? This is my code: #include ...

1 2