4
votes
4answers
131 views
How do I find the nth ancestor of a node in a binary search tree?
I got asked this at a job interview. Here's my O(log n) solution.
Find the depth of the node.
Repeat the search, but stop at depth - n.
Is there a way to do this without the se …
1
vote
1answer
94 views
Iterative version of Binary Tree Search
Basic Tree-search algorithm for searching a node (with value k) in a binary search tree.
'x' denotes the node of the binary search tree.
TREE-SEARCH (x, k)
if x= NIL or k = key[x …
0
votes
6answers
92 views
Binary Tree Nodes - Which Way?
For an assignment we were given in Data Structures, we had to create a test class to determine whether the code we were given correctly traversed the binary trees in our test class …
4
votes
4answers
175 views
Calculating the depth of a binary tree in LISP recursively
I have the following binary tree
A
/ \
B C
/ \
D E
represented as a list in Lisp (A 2 B 0 C 2 D 0 E 0) where the letters are node names and the numbers are the numb …
3
votes
8answers
213 views
What’s An Algorithm or code for obtaining ordinal position in a list sorted by value in c++
Hi,
This is similar to a recent question.
I will be maintaining sorted a list of values. I will be inserting items of arbitrary value into the list. Each time I insert a value, …
1
vote
6answers
194 views
List implemented using an inorder binary tree
For the new computer science assignment we are to implement a list/array using an inorder binary tree. I would just like a suggestion rather than a solution.
The idea is having a …
0
votes
1answer
48 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 …
1
vote
3answers
123 views
Is a Binary Tree Contained Within Another Binary Tree - C
Hello party people...So I just had an interview that I'm confident I screwed up royally. I had a bunch of questions thrown at me and didn't have enough time to answer the last one. …
0
votes
2answers
78 views
What’s A QT Or Open Source C++ Template For Ordinal Sorting
Hi,
I am looking for a special template class, hopefully either a QT template or a self-contained open source library. This template class is intended to act as a container for a …
2
votes
6answers
700 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? …
1
vote
2answers
71 views
Iterating over binary tree w/o control of stack or dynamic allocation
Is there an efficient, practical way to iterate over a binary tree given the following constraints:
You do not have control of the call stack, and thus may not use recursion. Al …
0
votes
3answers
69 views
Starting with an empty tree, what is the complexity of inserting into Red Black Tree in big-O notation?
If I have 10 elements and starting with an empty tree, What is the complexity of inserting 10 elements into Red Black in big-O notation?
Is it going to be more than O(log 10) bec …
0
votes
1answer
72 views
Binary Search Tree Array Imp. C++
Hello,
I'm just having trouble with Inserting into the array...And having the children branch off from the root, or "parent"..
I've been trying to insert data into an array based …
1
vote
7answers
113 views
Binary Tree’s usage
Dear All,
Can someone give me a real life example ( in programming, C#) of needing to use a Binary Tree or even just an ordinary tree?
I understand the principle of a Binary Tree …
0
votes
2answers
101 views
How to create a linked list of nodes that are contained in the max-Depth of a Binary Tree using Java
I've already created the Binary Tree and Linked list classes, I'm just in need of an algorithm that prints ONLY the nodes of the largest path. The height and size of the Binary Tre …
