Disclaimer
The content in this blog is written with my own experience and knowledge. And sample programs and source code in this blog completely written and tested by me. If any source code and content is similar to any other site or book or blog, which is purely coincidental and not intentional.
All content provided on this blog is for informational purposes only. The owner of this blog makes no representations as to the accuracy or completeness of any information on this site or found by following any link on this site.
The readers taking the info or source code from this blog, they can use and distribute by specifying my blog details. I will not sell any information on this blog. I reserve the right to change the content of the blog, closing the blog or selling the blog without informing to anyone.
The owner of this blog will not be liable for any errors or omissions in this information nor for the availability of this information. The owner will not be liable for any losses, injuries, or damages from the display or use of this information.
All content provided on this blog is for informational purposes only. The owner of this blog makes no representations as to the accuracy or completeness of any information on this site or found by following any link on this site.
The readers taking the info or source code from this blog, they can use and distribute by specifying my blog details. I will not sell any information on this blog. I reserve the right to change the content of the blog, closing the blog or selling the blog without informing to anyone.
The owner of this blog will not be liable for any errors or omissions in this information nor for the availability of this information. The owner will not be liable for any losses, injuries, or damages from the display or use of this information.
Subscribe to:
Posts (Atom)
Popular Posts
-
A universally unique identifier ( UUID ) is an identifier standard used in software construction, standardized by the Open...
-
Recently I started working on Japser Studio professional for my new project Cloud to generate the reports. I was very new to all cloud ...
-
Below is C program for AVL Tree implementation. #include<stdio.h> #include<malloc.h> typedef struct bst { int info; int hei...
-
strcmp is another string library function which is used to compare two strings and returns zero if both strings are same , returns +ve valu...
-
One of the complex operation on binary search tree is deleting a node. Insertion is easy by calling recursive insertion. But deletion wont...
-
We have recently faced one tricky issue in AWS cloud while loading S3 file into Redshift using python. It took almost whole day to inde...
-
Object slicing: when a derived class object is assigned to a base class object. only base class data will be copied from derived class and...
-
We have faced lot of weird issues while loading S3 bucke t files into redshift. I will try to explain all issues what we faced. Before go...
-
Below code is to find the cube root of a given integer number with out using pow math library function. Its very simple and brute force...
-
Recently we faced one issue in reading messages from SQS in AWS cloud where we are processing same message multiple times. This issue we...
3 comments:
c program to calculate algerbric equation
Hi Chandra Sekhar Pasumarthi, Your blog is good. went through some of your programs. Just want to tell you that there is one correction in your one program. Deleting a node from a tree. In case 3 if the node has both left and right child. In this code you have written
left_current_prev->left = NULL; before freeing the node. This will not valid if the left_current has right subtree. It will be dangling if you assign left_current_prev->left to NULL. Just make this correction as left_current_prev->left = left_current->right.
Hi Pankaj,
Thanks for your comment. I will try to check and modify if required.
Thanks,
Chandu
Post a Comment