码迷,mamicode.com
首页 > 其他好文 > 详细

Coursera Algorithms week4 基础标签表 练习测验:Check if a binary tree is a BST

时间:2017-08-14 17:23:14      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:compare   分析   nal   compareto   color   ext   course   height   determine   

题目原文:

Given a binary tree where each  ???????? contains a key, determine whether it is a binary search tree. Use extra space proportional to the height of the tree.

分析:

就是递归遍历BST,将每个节点x分别与x.left和x.right比大小。

 1 public boolean isBST(BST<Key,Value> bst){
 2     return isBST(root);
 3 }
 4 private boolean isBST(Node x){
 5     if(x.left.key.compareTo(x.key) != -1) return false;
 6     if(x.key.compareTo(x.right.key)!= -1) return false;
 7     if(x.left != null ) return isBST(x.left);
 8     if(x.right != null ) return isBST(x.right);
 9     return true;
10 }

 

Coursera Algorithms week4 基础标签表 练习测验:Check if a binary tree is a BST

标签:compare   分析   nal   compareto   color   ext   course   height   determine   

原文地址:http://www.cnblogs.com/evasean/p/7358665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!