Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8691257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T00:05:12+00:00 2026-06-13T00:05:12+00:00

Code Which I have written for this : sumBST(BST *root) { static sum =0;

  • 0

Code Which I have written for this :

   sumBST(BST *root)
     {
         static sum =0;
         if (root!= null)
           {
              if (root->left != null || root->right != null)
                {
                  sum = sum + sumBST(root->left) + sumBST(root->right);
                  return sum;
                }
              else
                {
                   root->data;
                }
           }
         else
            {
               return 0;
            }
        return sum;
     }

I have checked it by drawing recursion tree seems well but Still i am confused at some point I am doing some mistake. Please correct me i am doing something wrong here.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T00:05:14+00:00Added an answer on June 13, 2026 at 12:05 am

    Well, it doesn’t seem like you are actually adding the sum of the leaf nodes.

    In parcticular – the line:

    root->data
    

    Does not actually return the data, just reads it.
    Should be something like that in pseudo code:

    sumBST(node):
        if (root == null):
           return 0
        else if (root->left == null && root->right == null)  
           //add the value of the node if it is a leaf, this step is missing
          return root->data;
        else:
          return sumBST(root->left) + sumBST(root->right)
    

    EDIT:

    The problem in the code are as follows (clarifying and explaining further that point in the answer):

    You should return the data of the leaves somewhere – this is not happening anywhere in the code – I suspect you wanted to return it in root->data.

    However note that the recursion will go to each and every leaf – it is just missing returning the value from each of them.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written this innocent javascript code, which lets the user create two markers
I have written this piece of code public class Test{ public static void main(String[]
This is a simple code which I have written to learn multi threaded programming
I have written this code which accesses the Delete method on Web Service x,
My code This is the code which I have written. The default function should
I have written this code which is, param_values = { 'aa' : [[-1,-1], [-1,-1],
I have written this code which is simple #include <stdio.h> #include <string.h> void printLastLetter(char
I have written PHP code which connects to MYSQL to look up information, sends
I have written a code which does the thing as the title says. The
I have written two pieces of code which I intended to have identical outputs,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.