Results 1 to 2 of 2
- 05-30-2011, 11:42 PM #1
Member
- Join Date
- May 2011
- Posts
- 5
- Rep Power
- 0
I need help with this problem ASAP, Java Balanacing Tree !!!!!
(14pts) Below is the diagram to rebalance an AVL tree when the AVL condition is violated at the node P because of an insertion to the right of P's left child.
Complete the method doubleWithLeftChild(Node p) below that (1) rebalances the tree at P, (2) adjusts the heights of nodes whose children have changed, and (3) returns a reference to the new root node R of the rebalanced subtree.
DIAGRAM
PictureTrail: Online Photo Sharing, Social Network, Image Hosting, Online Photo Albums
Node doubleWithLeftChild(Node p)
{
}
where the Node structure is private class Node
{
public E data;
public Node left;
public Node right;
public int height;
public Node() { height = -1; }
public Node(E d) { data = d; height = 0; }
}
-
Similar Threads
-
Need help ASAP! Problem due tomorrow!
By ProtoMan in forum New To JavaReplies: 19Last Post: 02-22-2011, 05:00 AM -
Java Programmers needed ASAP Tucson, AZ Swing, Maven, HTML, XML, SQL
By pbracey in forum Jobs OfferedReplies: 0Last Post: 07-19-2010, 10:25 PM -
Data Structures(Binary Search Tree to AVL Tree)ASAP pls
By jfAdik in forum Forum LobbyReplies: 0Last Post: 04-04-2010, 07:40 AM -
problems with java code! (very new - need help asap!)
By sumkindafreek in forum New To JavaReplies: 1Last Post: 01-07-2009, 05:00 AM -
Need Java Help ASAP
By L-dog in forum New To JavaReplies: 22Last Post: 10-02-2008, 11:54 PM


LinkBack URL
About LinkBacks

Bookmarks