1. 程式人生 > >劍指Offer - 開始沒做出來 —— 驗證後序序列是否正確

劍指Offer - 開始沒做出來 —— 驗證後序序列是否正確

bsp 方法 http title scribe false item 整數 ews

https://www.nowcoder.net/practice/a861533d45854474ac791d90e447bafd?tpId=13&tqId=11176&tPage=2&rp=2&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking

題目描述

輸入一個整數數組,判斷該數組是不是某二叉搜索樹的後序遍歷的結果。如果是則輸出Yes,否則輸出No。假設輸入的數組的任意兩個數字都互不相同。

思路:

我知道應該用最後一個數字來測試,但是覺得有點麻煩,就沒有細想。 但是其實用遞歸,是可以很巧妙的。 在網上搜到的幾個方法也都是用遞歸來做的。

代碼:

class Solution {
    vector<int> sv;
    bool verify(int b, int e) {
        if (b >= e) return true;
        int x = b;
        for (; x<e; ++x) {
            if (sv[x] >= sv[e]) break;
        }
        for (int i=x; i<e; ++i) {
            if (sv[i] <= sv[e]) return false;
        }
        
return verify(b, x-1) && verify(x, e-1); } public: bool VerifySquenceOfBST(vector<int> sequence) { // recursive sv = sequence; if (sv.size() == 0) return false; return verify(0, sv.size()-1); } };

劍指Offer - 開始沒做出來 —— 驗證後序序列是否正確