Tagged Questions
0
votes
3answers
59 views
Printing a binary tree in Java [duplicate]
I'm trying to implement a Binary Tree, and for ease of debugging, I want to be able to print the tree so it actually looks like a tree. For example:
50
42 71
31 ...
0
votes
1answer
30 views
Mirror function for Binary tree in Java
QUESTION : Design a mirror method that computes the mirror image of a binary
tree.
What is wrong with my code?? This makes sense to me, however the only example that passes is my Leaf only example:
...
0
votes
2answers
45 views
How do I use a Scanner class to Print a plain text file?
I'm attempting to create a Scanner Class which is supposed to output a plain text file which contains the following information;
PersonName, Address, City, Phone_Number,
PersonName, Address, City, ...
0
votes
1answer
42 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
1answer
38 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 ...
-3
votes
1answer
59 views
How do I write the Preorder Method for Binary Trees? [closed]
I am having a very hard time understanding this. My homework assignment is as follows (I input my homework assignment to let you fully understand my goal, not to have you do my homework assignment for ...
0
votes
0answers
76 views
Making an infix expression Binary Tree
Today I am putting an infix expression into a binary tree by using a stack. This is what I have so far:
public String binaryTreeMaker(String infixExpr, int i)//converts and infix to postfix
{
...
0
votes
1answer
103 views
Binary Tree Postfix Calculator
I'm making a Postfix calculator where I must use stack objects and a Binary tree during the translation of an expression from infix to a parse tree during the evaluation of a postfix expression.
Can ...
0
votes
0answers
35 views
Find the first null value in a breadth-wide search of a binary tree. (Java)
I'm trying to write a binary heap implemented over a binary tree, but I'm having trouble finding a way to add a new node to the "bottom" of the heap, i.e. the first null space on the tree in a ...
0
votes
1answer
38 views
Adding an element to the first non-occupied leaf in a binary tree
Right now I'm trying to write a binary heap in Java implemented over a binary tree structure, and while I do have a very good grasp on how to "heapify" the tree after adding an element, the logic for ...
1
vote
2answers
56 views
Compare two binary trees to see if they have the same structure
another easy one but I can't seem to get it. I need to write a method that compares the structures of two binary trees and returns weather they are the same or not. The data and data types are not ...
0
votes
1answer
35 views
Setting parents in tree
I have a huffman binary tree that starts with an empty node a.
A points to a left node and a right node, which also point to left and right nodes. Is it possible to set the parent nodes for each node ...
-2
votes
2answers
146 views
Java has gone insane
I believe my java compile has gone insane. When I run the following code.
class zTree<T>
{
ArrayList<ArrayList<T>> table = new ArrayList<ArrayList<T>>();
int ...
-1
votes
1answer
86 views
Removing Nodes from a Binary Search Tree
http://www.cs.arizona.edu/~mercer/Projects/BSTRemoveGeneric.pdf
I am having trouble with coding this!
I don't know why this does't work! It drive me crazy!!!!
Remove method for OrderedSet.
Here is my ...
0
votes
0answers
507 views
Converting postfix expressions to a binary expression tree [Java]
So I'm trying to create a program that will convert a given infix expression (3 + 3) to postfix (3 3 +) and then store the postfix expression into a binary expression tree. Afterwards, I need to ...
0
votes
1answer
29 views
Appending all ancestors of a binary tree node to a String in Java
I am writing a family tree program in Java using a binary tree. The ancestors method is called from another class and calls findAncestors to run recursively to append ALL ancestors to an output ...
1
vote
1answer
54 views
Searching all nodes of a binary tree in Java
I am trying to write a method to search all nodes of a binary tree for a passed value and return the node when found. I cannot seem to get the logic right to search both sides of the tree. Here is ...
0
votes
1answer
76 views
Binary Tree Creation
I am attempting to create a binary tree from an input of 0's and 1's. For example if the input is 11010010 then the tree that is outputted would have 1 as the root. 2 would be the left child of 1 and ...
0
votes
2answers
83 views
getNumberOfInteriorNodes BinaryTree Java
After what @hyde told me, this is what I did:
Node<E> current = root;
int count=0;
public int getNumberOfInteriorNodes() {
if ...
1
vote
1answer
50 views
Unthreading a binary tree
I have to unthread a binary tree. what I mean by this is that I have the following method
public static <T> BinaryNode<T> unthread(BinaryNode<T> root)
that receives a double ...
0
votes
1answer
107 views
threaded binary tree
Hello guys i am supposed to write the ThreadedNode() class, but im haveing a few problems with it.
I understand that a threaded binary tree of a binary tree is obtained by setting every null left ...
-1
votes
1answer
45 views
Printing Paths for Trees
static void printAllPathsFromRootToLeaf (BinaryTree<Integer> tree, ArrayList<Integer> path)
{
if (tree.isEmpty())
{
System.out.println("Tree is Empty");
return;
...
0
votes
1answer
133 views
Search for a string in an unsorted binary tree
I am unsure as to what I need to do to search for a string stored in a binary tree. I have the search method written but I don't quite understand what to pass it. I need to search for the string ...
-2
votes
2answers
100 views
How to search a binary tree node for a string?
How do I look for what is contained in a node? What I mean by that is how do I make the comparison? What do I do different to make that work? I know, or at least I think I know, that I have to pass ...
2
votes
4answers
116 views
I need a data structure to hold two data types [closed]
I am making a binary tree and when I add a new string node to the tree, I must first search to see if that node already exists. If it does, I need to increase its value by one instead of adding it to ...
0
votes
1answer
25 views
How to add BNode to binary search tree?
From our assignment, a question want's us to write a method in the BTree class. It has to take an integer as a parameter, and then adds it to the tree. So I did that:
public void add(int v){
...
0
votes
2answers
57 views
Setting the left attribute of a binary tree node through a for loop
I have a binary tree, being implemented through linked nodes (with: int element, BinaryNode left, BinaryNode right, BinaryNode parent attributes). And I want to set the the nth node from the root ...
2
votes
4answers
281 views
Why use heap instead of binary tree when implementing priority queue?
It seems to me that the only advantage of heap over binary tree is to find the smallest item in the heap in complexity of O(1) instead of O(log(2)n) in binary tree.
When implementing priority queue ...
0
votes
2answers
126 views
Retrieve all the leaf nodes of java TreeMap
Is there a way to retrieve all the leaf nodes of a Java TreeMap?
I have a TreeMap like this
TreeMap<String, FooBar> myTree = new TreeMap<String, FooBar>(new Comparator<String>() {
...
1
vote
1answer
240 views
Binary Search Tree of Strings
I had a question of exactly how a binary search tree of strings works. I know and have implemented binary search trees of integers by checking if the new data <= parent data then by branching left ...
1
vote
1answer
98 views
Calculate Balance Factor
I have an assignment, to implement a method which prints out the balance factor of all the internal nodes of the binary tree t.
I have tried to do it, but I needed three methods.. I think there ...
1
vote
1answer
122 views
Counting nodes in binary tree [closed]
I am having trouble counting the nodes in my binary tree. It is a real simple tree to start as illustrated in the diagram below.
(5)
...
1
vote
1answer
73 views
Complexity of TreeSet operations
What is the complexity of higher() in java.util.TreeSet?
What would be the (amortized) complexity of accessing all elements in ascending order?
In the description, it only says "This ...
0
votes
1answer
249 views
Construct binary tree from inorder and level traversal
Need help finding a way to construct a binary tree given the inorder and level traversal. Is it possible to do it using recursion since the level traversal has to be done by using a queue?
4
votes
3answers
116 views
Generalizing actions for a binary tree traversal?
I'm trying to find a way that I could take a binary tree class and traverse through its nodes, performing X amount of inline actions on each node without having to rewrite the same traversal code over ...
1
vote
2answers
993 views
Traversing through all nodes of a binary tree in Java
Let's say I have a simple binary tree node class, like so:
public class BinaryTreeNode {
public String identifier = "";
public BinaryTreeNode parent = null;
public BinaryTreeNode left = ...
0
votes
2answers
373 views
Binary trees, returning the next node in a preorder traversal
I have an assignment and I need some help with a method.
So I have a tree like this:
A
/ \
B C
/ \ / \
D E F G
...
0
votes
1answer
79 views
How to transform Modellica code to Ontologies (.owl)?
I working on a mechatronic project and i use dymola tool to generate modelica code for my model . now i want to transform modellica to .owl inorder to implement semantic search for the elements . I ...
0
votes
1answer
92 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 ...
0
votes
0answers
219 views
Java binary search tree delete
Im writing a delete method for a binary search tree, it isnt complete but i filled a tree so that i could at least test the case where the node iw ant to delete is a leaf but it doesnt seem to be ...
1
vote
3answers
244 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 ...
-2
votes
1answer
76 views
Write Method Output to a File - JAVA [closed]
I'm wondering how you would write the output of a method to a text file.
The method in question takes an AVL Binary Search Tree as a parameter, and returns all of its contents with indenting, ...
3
votes
1answer
331 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
votes
2answers
73 views
How can I store the values of nodes of a binary search tree in a string?
I am trying to store all values of the nodes in a binary search tree in ascending order in a string. I managed to print them out but storing them in a string seems a little more complicated Any ideas?
...
1
vote
1answer
66 views
Why is this method to calculate the size of a binary tree not working?
ok these binary trees kinda drive me crazy now. I made a method to get the number of nodes in a tree but the result not correct. There is always one node missing. Any ideas? Help would be appreciated ...
0
votes
1answer
46 views
Why is this method to calculate the sum of a binary tree not working?
I know that this code should work but it does not. Does anyone know what i am missing? I am trying to get the sum of all nodes in a binary tree.
public int getSum() {
if (this == null) {
...
0
votes
3answers
146 views
Find the diameter of a binary tree
I am trying to find the diameter of a binary tree (Path length between any two nodes in the tree containing maximum number of nodes.) in java.
my code snippet:
public int diametre(Node node, int d)
...
0
votes
2answers
312 views
print all root to leaf paths in a binary tree
i am trying to print all root to leaf paths in a binary tree using java.
public void printAllRootToLeafPaths(Node node,ArrayList path)
{
if(node==null)
{
return;
}
...
-1
votes
1answer
82 views
Binary Search Tree in Java - From python [closed]
Alright, so I'm working on an assignment that requires us to implement a binary search tree in a language of our choice. I just need help translating a class definition in Python to its equivalent in ...
0
votes
1answer
50 views
Tree,Nodes,Type of Trees
I want to create a tree that detect if the insert is a Object of type Characters it will compare each one and decide where to insert [ right or left ],( i know it can detect by position in ascii ...





