Update 剑指 offer 题解.md

This commit is contained in:
聪威 2018-09-16 14:17:21 +08:00 committed by GitHub
parent 170f0fc3eb
commit b802b8add8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1559,7 +1559,7 @@ public ArrayList<ArrayList<Integer>> Print(TreeNode pRoot) {
输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。假设输入的数组的任意两个数字都互不相同。
例如,下图是后序遍历序列 3,1,2 所对应的二叉搜索树。
例如,下图是后序遍历序列 1,3,2 所对应的二叉搜索树。
<div align="center"> <img src="../pics//836a4eaf-4798-4e48-b52a-a3dab9435ace.png" width="150"/> </div><br>