每天刷個演算法題20160521:二叉樹高度(遞迴與非遞迴)
版權所有。所有權利保留。
歡迎轉載,轉載時請註明出處:
http://blog.csdn.net/xiaofei_it/article/details/51502727
為了防止思維僵化,每天刷個演算法題。已經刷了幾天了,現在發點程式碼。
我已經建了一個開源專案,每天的題目都在裡面:
https://github.com/Xiaofei-it/Algorithms
絕大部分演算法都是我自己寫的,沒有參考網上通用程式碼。讀者可能會覺得有的程式碼晦澀難懂,因為那是我自己的理解。
最近幾天都是在寫一些原來的東西,大多數是非遞迴。以後準備刷點DP、貪心之類的題。
下面是二叉樹高度(遞迴與非遞迴):
/**
*
* Copyright 2016 Xiaofei
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package xiaofei.algorithm;
import java.util.Stack;
/**
* Created by Xiaofei on 16/5/21.
*
* I am writing code in Starbucks alone.
*
* What a sad picture!!!
*
* I cannot remember when I drank coffee with somebody else last time.
*
*/
public class BinaryTreeHeight {
public static int calculateRecursively(BinaryTreeNode root) {
if (root == null) {
return 0;
} else {
return Math.max(calculateRecursively(root.left), calculateRecursively(root.right)) + 1;
}
}
public static int calculateCorecursively(BinaryTreeNode root) {
//當年ACM的時候總喜歡自己寫queue或者stack,幾乎不用C++的STL庫。現在想用一下Java的Stack
class Element {
BinaryTreeNode node;
int left;
int right;
Element(BinaryTreeNode node) {
this.node = node;
left = right = -1;
}
}
Stack<Element> stack = new Stack<>();
stack.push(new Element(root));
int result = -1;
while (!stack.empty()) {
Element element = stack.peek();
if (element.node == null) {
stack.pop();
if (stack.isEmpty()) {
result = 0;
} else {
Element tmp = stack.peek();
if (tmp.left == -1) {
tmp.left = 0;
} else {
tmp.right = 0;
}
}
} else if (element.left == -1) {
stack.push(new Element(element.node.left));
} else if (element.right == -1) {
stack.push(new Element(element.node.right));
} else {
Element tmp1 = stack.pop();
int height = Math.max(tmp1.left, tmp1.right) + 1;
if (stack.isEmpty()) {
result = height;
} else {
Element tmp2 = stack.peek();
if (tmp2.left == -1) {
tmp2.left = height;
} else {
tmp2.right = height;
}
}
}
}
return result;
}
}
相關文章
- 【刷題】二叉樹非遞迴遍歷二叉樹遞迴
- 每天刷個演算法題20160518:非遞迴二叉樹遍歷演算法遞迴二叉樹
- 遍歷二叉樹-------遞迴&非遞迴二叉樹遞迴
- 二叉樹——後序遍歷的遞迴與非遞迴演算法二叉樹遞迴演算法
- 每天刷個演算法題20160525:快速排序的遞迴轉非遞迴解法演算法排序遞迴
- 二叉樹的四種遍歷(遞迴與非遞迴)二叉樹遞迴
- 【C++】翻轉二叉樹(遞迴、非遞迴)C++二叉樹遞迴
- 每天刷個演算法題20160524:阿克曼函式的遞迴轉非遞迴解法演算法函式遞迴
- 二叉樹建立及遍歷演算法(遞迴及非遞迴)二叉樹演算法遞迴
- 每天刷個演算法題20160523:騎士巡遊的遞迴轉非遞迴解法演算法遞迴
- 遍歷二叉樹的遞迴與非遞迴程式碼實現二叉樹遞迴
- 【資料結構】二叉樹遍歷(遞迴+非遞迴)資料結構二叉樹遞迴
- 揹包問題的遞迴與非遞迴演算法遞迴演算法
- 二叉樹非遞迴遍歷二叉樹遞迴
- [java] 二叉樹的後序遍歷(遞迴與非遞迴實現)Java二叉樹遞迴
- 刷題系列 - Python用非遞迴實現二叉樹前序遍歷Python遞迴二叉樹
- 二叉樹的前中後序遍歷(遞迴和非遞迴版本)二叉樹遞迴
- 非遞迴先序遍歷二叉樹遞迴二叉樹
- 快速排序【遞迴】【非遞迴】排序遞迴
- 什麼是遍歷二叉樹,JavaScript實現二叉樹的遍歷(遞迴,非遞迴)二叉樹JavaScript遞迴
- 刷題系列 - Python用非遞迴實現二叉樹後續遍歷Python遞迴二叉樹
- 刷題系列 - Python用非遞迴實現二叉樹中序遍歷Python遞迴二叉樹
- python實現二叉樹及其七種遍歷方式(遞迴+非遞迴)Python二叉樹遞迴
- 樹3-二叉樹非遞迴遍歷(棧)二叉樹遞迴
- 二叉樹的非遞迴遍歷寫法二叉樹遞迴
- 快速排序(遞迴及非遞迴演算法原始碼)排序遞迴演算法原始碼
- 二叉樹遞迴練習二叉樹遞迴
- 二叉樹的遞迴套路二叉樹遞迴
- 刷題系列 - Python用遞迴實現求二叉樹深度Python遞迴二叉樹
- 樹(2)--二叉樹的遍歷(非遞迴)+線索二叉樹二叉樹遞迴
- 二叉樹的所有遍歷非遞迴實現二叉樹遞迴
- 二叉樹的非遞迴遍歷——java實現二叉樹遞迴Java
- 遞迴演算法轉換為非遞迴演算法的技巧遞迴演算法
- 【資料結構】——搜尋二叉樹的插入,查詢和刪除(遞迴&非遞迴)資料結構二叉樹遞迴
- 【每日一題】二叉樹的前中後序非遞迴整理每日一題二叉樹遞迴
- 二十一、氣泡排序演算法——JAVA實現(遞迴與非遞迴)排序演算法Java遞迴
- 演算法小專欄:遞迴與尾遞迴演算法遞迴
- 利用非遞迴演算法來搜尋二叉樹中的某個元素java遞迴演算法二叉樹Java