LeetCode222 Count CompleteTree Nodes(計算完全二叉樹的節點數) Java 題解

來源:互聯網
上載者:User

標籤:completetree   nodesnum   java   leetcode   

題目:

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, is completely filled, and all nodes in the last level are as far left as possible. It can have between 1 and 2h nodes inclusive at the last level h.


解題:

如果用常規的解法一個個遍曆,就是O(n)時間複雜度 ,會不通過,這邊就不寫O(n)的代碼了。因為是完全二叉樹,滿二叉樹有一個性質是節點數等於2^h-1,h為高度,所以可以這樣判斷節點的左右高度是不是一樣,如果是一樣說明是滿二叉樹,就可以用剛才的公式,如果左右不相等就遞迴計算左右節點。

代碼:

public static int countNodes(TreeNode root) { if(root==null) return 0; else {int left=getLeftHeight(root);int right=getRightHeight(root);if(left==right)return (1<<left)-1;else {return countNodes(root.right)+countNodes(root.left)+1;}} }  public static int  getRightHeight(TreeNode root) { int height=0; while(root!=null) { height++; root=root.left; } return height;}  public static int  getLeftHeight(TreeNode root) { int height=0; while(root!=null) { height++; root=root.right; } return height;}


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

LeetCode222 Count CompleteTree Nodes(計算完全二叉樹的節點數) Java 題解

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.