Count Complete Tree Nodes--leetcode

Source: Internet
Author: User

Given a complete binary tree, count the number of nodes.

Definition of a complete binary tree from Wikipedia:
In a complete binary tree every level, except possibly the last, was completely filled, and all nodes As far left as possible. It can has between 1 and 2hnodes inclusive at the last level H.

Topic: Given a complete binary tree, return the number of nodes of this binary tree.

Problem-solving ideas: The beginning of the hierarchy traversal, O (n), the results of tle, and later optimized, using a recursive way to do, the total number of nodes equal to the number of 1+ Zuozi + right subtree, because it is a complete binary tree, so for the subtree is full of two fork tree can be directly calculated results and return.

 Public classSolution { Public intcountnodes (TreeNode root) {if(root==NULL){            return0; } TreeNode Left=root,right=Root; intCNT = 0;  while(right!=NULL) { left=Left.left; Right=Right.right; CNT++; }        if(left==NULL){            return(1<<cnt)-1; }        return1+countnodes (Root.left) +countnodes (root.right); }}

Count Complete Tree Nodes--leetcode

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.