首页 > 代码库 > 二叉树的后续遍历序列

二叉树的后续遍历序列

代码:

#include <iostream>
#include <vector>
#include <assert.h>

using namespace std;

bool verifyBst(int data[],int length){

	if(data =http://www.mamicode.com/= NULL || length <=0)>
运行结果: