Tagged Questions
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 ...
3
votes
1answer
130 views
Build balanced binary tree with foldr
I write the function foldTree that build balanced binary tree from list.
I must use foldr and it's ok, i used it, but i make insertInTree function recursive =( for now i know only this way to walk ...
0
votes
4answers
261 views
binary tree recursively search c code [not Binary Search Tree]
The problem with my code is that,when a left child value is searched then due do to recursion levels it goes back and checks the right child.And the return gets incorrect. I can't find a way to get ...
-1
votes
3answers
107 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 ...
1
vote
2answers
153 views
Trying to create a pointer to parent node whilst building binary Tree
I'm an enthusiast, very new to c++, and I'm working my way through the best way to implement this tree.
I have a number of issues, but primarily I'm trying to figure out the best way of storing a ...
0
votes
2answers
146 views
Recursive binary tree class of Fibonacci sequence
As part of a personal project, not homework - just for my own interest and getting started in C++ I'm trying to create a binary tree of Fibonacci values; I know I'm making a number of fundemental ...
1
vote
2answers
39 views
Small issue with validating a binary tree
I wrote this recursive function, which works as expected. It validates a binary tree i.e., it checks whether the given binary tree is a binary search tree or not and gives the correct answer too.
...
0
votes
1answer
73 views
Parsing XML inOrder C++
This is related to one of my previous questions. I'm trying to build a tree from an xml file. I plan to go through the xml file and create objects out of the data and create a vector of the objects in ...
1
vote
2answers
234 views
Building a Tree from XML File using RapidXML and c++
For a project for my c++ class, I am supposed to parse and xml file and build a binary tree from it. The file is much more dense than this but the layout is as follows:
<?xml version="1.0" ...
0
votes
0answers
153 views
Displaying value by value in a threaded binary tree using a “Next” button with a recursive inorder traversal
As the title states, having a bit of trouble mostly with the algorithm. I have the algorithm down to parse through and print ALL the values, but I need to be able to stop on each value and display it ...
0
votes
2answers
183 views
Binary tree insertion sort in C
Hey can anyone explain how to sort a binary tree using insertion sort in C language where time complexity is an issue. I am just learning to code. Thank you guys!
0
votes
1answer
117 views
Building a binary tree from a recursively defined string notation
I've been struggling with this for several hours now, so after Googling incessantly and finding little to go on, I finally decided to see what kind of help SO might offer me on a piece of my latest CS ...
0
votes
1answer
192 views
How to do tail recursion for a binary tree?
If you have a binary tree, how can you iterate through (using in order) it using tail recursion? I know that tail recursion involves you to calculate the new value as you iterate, and then when you ...
0
votes
1answer
402 views
Reading a binary tree from file
I've been working on the input from file and think I have the logic right, but my nodes aren't linking properly. I'm able to set the root correctly and the program is able to walk through the string ...
0
votes
1answer
427 views
Find average value of binary tree c++
So I'm trying to write a recursive function to return the average value of a binary tree of values in c++. Here's what I have, that doesn't work:
double avg(bNode* root)
{
if(!root) return 0;
...
0
votes
2answers
422 views
Java binary tree add method over writes root
I am trying to write a binary tree and the add method is continually overwriting the root of the tree. I have two methods a recursive add method that takes in a String and a Node and then a regular ...
1
vote
2answers
76 views
Why do I have to explicitly set left/right children for a recursive insert for a binary tree?
I was just playing around with a binary tree and I was curious as to why the first implementation worked but the second didn't. What am I overlooking? I think it's trivial but I'm still missing it.
...
0
votes
1answer
118 views
Find the number of nodes in a tree that contains even number data values
This is a homework assignment. I try to find the number of nodes in a tree structure that contains even number data values. The following is my failed attempt in a Java class named LinkedTree.
public ...
1
vote
2answers
84 views
Python list recursion type error
Solved: It seems that the problem only occurs with PythonWin. I ran everything through the IDLE's python shell and it worked just fine. Must be a bug with PythonWin and not the code itself.
I can't ...
3
votes
1answer
733 views
String Representation of Binary Search Tree
I've been trying to write a recursive string method for a binary search tree that returns a multiple line representation of a tree with preorder path info.
Each node should be prefaced by a series of ...
0
votes
3answers
222 views
Path to Node in a Binary Tree
I am trying to recursively display the path taken to a given node in a binary tree where the method will output the path needed in the following way: "left, right, left".
Here is what I have so far:
...
3
votes
1answer
153 views
Huffman Code - Segmentation Fault 11
Ok I have tried to make the Hauffman Code by my own and I have a problem when I'm trying to print the corresponding code to each letter with a recursive method.
(By this point I already created a ...
1
vote
2answers
517 views
Binary Tree Recursive Function
I need to print out a binary tree that looks like this:
--------x-------
----x-------x---
--x---x---x---x-
-x-x-x-x-x-x-x-x
xxxxxxxxxxxxxxxx
Using recursion to print the left side of the line and ...
0
votes
2answers
51 views
How would I determine the level on which item is located in binary tree?
In this piece of code I am showing all File object stored in linked list. I am running this in recursive way which let me to explore the entire binary tree.
My job is to count on which level of the ...
1
vote
2answers
99 views
Simple c++ recursive explaination needed
I am currently trying to wrap my head around recursion so I picked a c++ textbook and began to read. The first couple of pages in the chapter on recursion were easy to understand but then I got to an ...
1
vote
3answers
1k views
How to construct BST given post-order traversal
I know there are ways to construct a tree from pre-order traversal (as an array). The more common question is to construct it, given the inorder and pre-order traversals. In this case, although the ...
0
votes
2answers
88 views
Recursion and Constant variables
I am trying to create a method that will tell me the height a binary tree, the easiest way would be to use a recursion, however for some reason one of my variables is getting reset even though I ...
0
votes
2answers
89 views
Testing members of a Binary Tree
I am currently trying to traverse a Binary Tree to check if certain values are within.
A for loop is testing all values from 1 to 50 and will return true for each matched value.
here is the current ...
1
vote
1answer
143 views
How to form a Binary Tree from a Preorder and a Children charsequence
The problem is to build a Binary Tree from a Preorder listing and a sequence of the number of children that each node has. For example: "BAC" and "200" could be one input resulting in an inorder ...
0
votes
1answer
137 views
How to compare root to leaf paths in a binary tree
I am trying to search all the root-to-leaf paths within a given red black tree. In particular, I was wanting to write a test that, given a rbt, will assert that every path has the same count of black ...
0
votes
1answer
638 views
Tower of Hanoi [Edit] - k peg solution
I was able to come up with an algorithm (logical) to solve a k-peg solution for the Tower of Hanoi problem, but when I implement my code, I was getting segmentation fault.
void move(int ...
1
vote
1answer
63 views
How to modify a recursion to a loop version in this case?
I want to modify the c++ code below, to use loop instead of recursion.
I know of 2 ways to modify it:
Learn from the code and make a loop algorithm. In this case I think the meaning of code is to ...
1
vote
3answers
499 views
Returning the nth term of an inorder traversal of a binary tree
I came up with this code but it requires a global variable Rank. Is there any way I can solve this problem without having to have a global variable?
int Rank = 0;
public int ...
1
vote
2answers
205 views
make tree in scheme
(define (entry tree) (car tree))
(define (left-branch tree) (cadr tree))
(define (right-branch tree) (caddr tree))
(define (make-tree entry left right) (list entry left right))
(define (mktree order ...
1
vote
4answers
105 views
do i need to traverse both subtrees for computing, the root to leaf sum, to a given value?
This is the problem statement:
"Given a tree and a sum, return true if there is a path from the root
down to a leaf, such that adding up all the values along the path
equals the given sum."
I ...
2
votes
2answers
468 views
Algorithm to find the max width of a tree, not using node structures
I'm trying to figure out how to calculate the max width of a tree. Instead of using a typical leaf/node structure, I am basing it on data from a DB. I will find all the children of a particular "node" ...
1
vote
2answers
612 views
Diameter of Binary Tree - Better Design
I have written a code for finding diameter of Binary Tree.
Need suggestions for the following:
Can I do this without using static variable at class level?
Is the algorithm fine/any suggestions?
...
3
votes
4answers
184 views
Delete Binary Tree - Suggestions on Design
I have written a code for deleting all elements of tree.
Need suggestions for following:
In reverseTreeStack method, Can I design without using stack method parameter?
Can I design the entire code ...
1
vote
3answers
210 views
Recursively searching binary tree issue
I have written the below code for recursively searching binary tree .
Even though my system.out statement is getting executed , the return statement is not returning out of entire recursion and thus ...
1
vote
5answers
2k views
Find sum of nodes height in a binary tree recursively
How to find sum of node's height in a binary tree recursively?
Example:
public int totalHeight() {
return totalHeight(root);
}
private int totalHeight(BinaryNode<AnyType> n) {
int ...
0
votes
3answers
311 views
iterative or recursive to implement a binary search tree?
I'm learning Data Structures & Algorithms now.
My lecture notes have an implementation of a binary search tree which is implemented using a recursive method. That is an elegant way, but my ...
0
votes
0answers
115 views
Finding Largest Binary Subtree
For that question, I've tried recursive solution which tends to be true. However somehow it works for some trees and cant figure out why. Assume you have a isLeaf method. Here is roughly what I did.
...
0
votes
4answers
115 views
Can't implement a recursion search in binary tree
Here's my code:
template <typename DataType> bool SearchValue(TreeNode<DataType> *root, DataType search_value)
{
if(search_value != root->data)
{
if(root->right != ...
1
vote
3answers
131 views
How to write recursion without using class field in Java
I have the following correct Java code to find the in-order kth element in a binary tree.
private static int count = 0;
public static <T> T findkthInOrder(Node<T> root, int k) {
...
2
votes
1answer
358 views
Recursive function in java to fill binary tree with dictionary
im trying to write a recursive function in java where it takes an arraylist full of words in alphabetical order and fills up the tree as best it can. As far as I can tell, the problem im having is ...
0
votes
3answers
142 views
java - tree structure method
I've been asked to write a recursive method to investigate whether or not there are any single children. I have get the base cases but am a bit confused about how to go about the recursive section as ...
3
votes
3answers
788 views
Print binary tree nodes
I'm programming a BinaryTree project. I finished all (insert, delete, create, find) but one function, the printing operation. I'm supposed to print it like this:
5
46
X557
XXX6XXX9
Basically print ...
2
votes
4answers
1k views
Using a recursive method to find the smallest element in a subtree given the root: what am I doing wrong here?
So I have a homework question where I'm supposed to use a recursive method to "find the minimum element within a subtree rooted at the specified node"
And then I'm given this as my starting point:
...
0
votes
2answers
200 views
Using recursion to to trim a binary tree based on a given min and max value
As the title says, I have to trim a binary tree based on a given min and max value. Each node stores a value, and a left/right node. I may define private helper methods to solve this problem, but ...
0
votes
2answers
578 views
Print list of leaves of a tree using recursion
I need to write a function where I need to return a list of the leaves of the tree.
So for this tree:
1
2 3
4 5 6
This should print [4, 5, 6]
Here's what I've come up ...



