-
-
Notifications
You must be signed in to change notification settings - Fork 30.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create AVL Tree #552
Create AVL Tree #552
Conversation
Codecov Report
@@ Coverage Diff @@
## master #552 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 150 150
Lines 2627 2627
Branches 439 439
=========================================
Hits 2627 2627 Continue to review full report at Codecov.
|
printf("\n The value to be deleted is not present in the tree"); | ||
return(tree); | ||
} | ||
if(cur–>left == NULL) | ||
ptr = cur–>right; | ||
else if(cur–>right == NULL) | ||
ptr = cur–>left; | ||
else | ||
{ | ||
// Find the in–order successor and its parent | ||
psuc = cur; | ||
cur = cur–>left; | ||
while(suc–>left!=NULL) | ||
{ | ||
psuc = suc; | ||
suc = suc–>left; | ||
} | ||
if(cur==psuc) | ||
{ // Situation 1 | ||
suc–>left = cur–>right; | ||
} | ||
else | ||
{ // Situation 2 | ||
suc–>left = cur–>left; | ||
psuc–>left = suc–>right; | ||
suc–>right = cur–>right; | ||
} | ||
ptr = suc; | ||
} | ||
// Attach ptr to the parent node | ||
if(parent–>left == cur) | ||
parent–>left=ptr; | ||
else | ||
parent–>right=ptr; | ||
free(cur); | ||
return tree; | ||
} | ||
|
||
int totalNodes(struct node *tree) | ||
{ | ||
if(tree==NULL) | ||
return 0; | ||
else | ||
return(totalNodes(tree–>left) + totalNodes(tree–>right) + 1); | ||
} | ||
int totalExternalNodes(struct node *tree) | ||
{ | ||
if(tree==NULL) | ||
return 0; | ||
else if((tree–>left==NULL) && (tree–>right==NULL)) | ||
return 1; | ||
else | ||
return (totalExternalNodes(tree–>left) + totalExternalNodes(tree–>right)); | ||
} | ||
|
||
int totalInternalNodes(struct node *tree) | ||
{ | ||
if( (tree==NULL) || ((tree–>left==NULL) && (tree–>right==NULL))) | ||
return 0; | ||
else | ||
return (totalInternalNodes(tree–>left) + totalInternalNodes(tree–>right) + 1); | ||
} | ||
|
||
int Height(struct node *tree) | ||
{ | ||
int leftheight, rightheight; | ||
if(tree==NULL) | ||
return 0; | ||
else | ||
{ | ||
leftheight = Height(tree–>left); | ||
rightheight = Height(tree–>right); | ||
if(leftheight > rightheight) | ||
return (leftheight + 1); | ||
else | ||
return (rightheight + 1); | ||
} | ||
} | ||
struct node *mirrorImage(struct node *tree) | ||
{ | ||
struct node *ptr; | ||
if(tree!=NULL) | ||
{ | ||
mirrorImage(tree–>left); | ||
mirrorImage(tree–>right); | ||
ptr=tree–>left; | ||
ptr–>left = ptr–>right; | ||
tree–>right = ptr; | ||
} | ||
} | ||
|
||
struct node *deleteTree(struct node *tree) | ||
{ | ||
if(tree!=NULL) | ||
{ | ||
deleteTree(tree–>left); | ||
deleteTree(tree–>right); | ||
free(tree); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't that supposed to be a Javascript source code?
The files must be in JS format. |
No description provided.