判断整数序列是不是二元查找树的后序遍历结果
摘要:
#include <iostream>using namespace std;bool verifySquenceOfBST(int squence[], int length){if (squence==NULL||length<=0){return false;}int root=squence[length-1];int i=0;for(; i<length-1; +... 阅读全文
posted @ 2010-08-11 16:29 山径山精 阅读(251) 评论(0) 推荐(0) 编辑