BinaryTree | C language realizes the basic operation of binary tree
kandi X-RAY | BinaryTree Summary
kandi X-RAY | BinaryTree Summary
C language realizes the basic operation of binary tree
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of BinaryTree
BinaryTree Key Features
BinaryTree Examples and Code Snippets
Community Discussions
Trending Discussions on BinaryTree
QUESTION
I am writing a program to get Sum of depth for a given binaryTree
. It's returning proper value with instance value but returning wrong value(greater than expected) if I am printing the returned value from the method. Code with output is as below.
Note: I am having the right solution also but I am posting this solution to understand what wrong happing with the call stack of the recursion. My expectation was in the last stack memory the final value will persist that will be returned to the caller method it returning a different value.
ANSWER
Answered 2021-May-27 at 05:33The base case should return depth
rather than the accumulated depthSum
.
The base case is asking:
What is the depth sum of a subtree that has no child nodes?
It is the depth
of that subtree! depthSum
would include all the depths of the nodes that we have counted, some of which are not in the subtree that we are asking about, so is incorrect.
Also, the recursive case should also add depth
to the sum of both subtrees.
The recursive case is asking:
What is the depth sum of a subtree with two sub-subtrees?
It is the sum of the depth sum of those sub-subtrees, plus the depth of the subtree itself!
Also note that you forgot the case when exactly one of root.left
and root.right
is null.
After handling those cases, the code would look like:
QUESTION
In the code snippet below I am calling nodeDepths(root, depth, depthSum)
and expecting updated value in depthSum
but every time it's returning 0 to me
ANSWER
Answered 2021-May-27 at 02:09Your line
QUESTION
I'm supposed to create a binary search tree that takes in an integer array. I want to know how can I access the left and right nodes in the Node class to create the left and right nodes.
However, this code only creates the right nodes of the binary tree. What is wrong with my code?
This is the Node class:
...ANSWER
Answered 2021-May-14 at 09:50Some of the issues are:
- Your code has a mix of
BinaryNode
andNode
. I will assumeNode
. - The first code block has a constructor without a name -- that is a syntax error.
root
should not be initialised asnew Node
, but as the return value from a call toBinaryTree
obj
should not be defined in a scope that is larger than theBinaryTree
function, as you will keep reusing the same object over and over in each recursive call, which will have devastating effects on the algorithm. You don't even need this variable.
Change BinaryTree
to this:
QUESTION
I am trying to organize data into a binary tree and have created a struct to better organize the data. However, my compiler has this error message every time I try to run my code:
...ANSWER
Answered 2021-May-13 at 08:05Since you defined a non-default constructor, the compiler will not generate a default constructor, see https://en.cppreference.com/w/cpp/language/default_constructor for more info. To solve this, see default constructor not generated?.
QUESTION
I've pasted my whole code below.
I'm able to delete node successfully with no child or one child but unable to delete node with two children.
In node with two children I'm using approach where I swap the value of targeted node with it's leaf child and then trying to delete the leaf node. But while deleting it's giving error exited with code=3221225725 in 0.474 seconds I also tried creating other functions to delete it but end up getting the same.
I've tried removing delete and the code is running just fine and the value is swapped successfully too! I've also used same approach for Binary Search Tree and it was working just fine!
...ANSWER
Answered 2021-May-04 at 06:07I'm going to post a section in Java, but I assume if you're doing BinaryTrees you can read it haha. Anyways, it looks like you have Node
defined which is equivilent to my BinaryTreeNode
and then you want to have a constructor that takes in a left and right tree node to recursively define the tree.
QUESTION
I am trying to implement a binary tree which has heaps as nodes. But I couldn't figure out why this error shows up.
First, these are the classes:
BinaryTree:
...ANSWER
Answered 2021-Apr-30 at 22:26ValueOccurance
is Comparable
, not Comparable>
. i.e. it cannot compare instances of itself.
QUESTION
I want to return number of values that is the most frequently in BinaryTree. I have BinaryClass which contain a lot of methods as add, contain, isEmpty, counter, iterator and other.I tried to implement this method public int getMaxFrequency()
but I get a problem StackOverFlowException at markerd row.
When I run my code I get StackOverFlow Exception, anyone can help me please,
I'm new in BinaryTree.
Help me please.
...ANSWER
Answered 2021-Apr-27 at 21:28Try something like this for your counter functions:
QUESTION
Suppose I have a certain binary tree. I used new
to create nodes, but now I want to delete them in the destructor:
ANSWER
Answered 2021-Apr-17 at 20:35If your tree nodes store their parent it is possible to find the following node from any position and you could do a while loop on that but it will take more time than the recursive form (because the call to next() will require more than just a single node step half the time where the recursive-descent never takes more than a single step to find the next node to free).
QUESTION
public class Diameter {
// Klasse BinaryTree nicht modifizieren!
public static class BinaryTree {
int value;
BinaryTree left;
BinaryTree right;
BinaryTree(int value) {
this(value, null, null);
}
BinaryTree(int value, BinaryTree left, BinaryTree right) {
this.value = value;
this.left = left;
this.right = right;
}
}
public static int diameter(BinaryTree tree) {
return 0;
}
public static void main(String[] args) {
case1();
case2();
case3();
case4();
case5();
case6();
case7();
}
// Testfälle nicht modifizieren!
public static void case1() {
BinaryTree root = new BinaryTree(1,
new BinaryTree(3,
new BinaryTree(7,
new BinaryTree(8,
new BinaryTree(9),
null),
null),
new BinaryTree(4,
null,
new BinaryTree(5,
null,
new BinaryTree(6)))),
new BinaryTree(2)
);
System.out.println("Case 1: Solution should be 6 -- " + diameter(root));
}
public static void case2() {
BinaryTree root = new BinaryTree(1);
System.out.println("Case 2: Solution should be 0 -- " + diameter(root));
}
public static void case3() {
BinaryTree root = new BinaryTree(1,
new BinaryTree(2),
null);
System.out.println("Case 3: Solution should be 1 -- " + diameter(root));
}
public static void case4() {
BinaryTree root = new BinaryTree(1,
new BinaryTree(2),
new BinaryTree(3));
System.out.println("Case 4: Solution should be 2 -- " + diameter(root));
}
public static void case5() {
BinaryTree root = new BinaryTree(1,
new BinaryTree(2,
new BinaryTree(4),
null),
new BinaryTree(3));
System.out.println("Case 5: Solution should be 3 -- " + diameter(root));
}
public static void case6() {
BinaryTree root = new BinaryTree(1,
new BinaryTree(2,
new BinaryTree(3,
new BinaryTree(4,
new BinaryTree(5,
new BinaryTree(6,
null,
new BinaryTree(7)),
null),
null),
null),
null),
null);
System.out.println("Case 6: Solution should be 6 -- " + diameter(root));
}
public static void case7() {
System.out.println("Case 7: Solution should be 0 -- " + diameter(null));
}
}
...ANSWER
Answered 2021-Apr-15 at 09:28We can do depth first traverse and increase height each level. And pick maximum from left or right. But also we keep tracking left+right
and pick the maximum one.
QUESTION
Hi I'm currently trying to build a Java BST with some online references, but I have a problem during my insertion as I realize it does not create a tree after I tried to do inOrder traversal, after some attempts I found issue when passing the root into my insertion method.
My Node class:
...ANSWER
Answered 2021-Apr-08 at 17:51The recursive part after the first if-statement
will always be executed. Also, given it's a BST, if comp <= 0
recur left
:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install BinaryTree
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page