[編譯原理]7-4 翻譯布爾表達式-A

大家都學過了布爾表達式的翻譯,其中有一個拉鍊-回填技術,這次我們就練習這個技術。

注意,在布爾表達式中,“並且”運算的優先級是要高於“或者”運算的。

輸入格式:

輸入爲一行字符串,例如: a < b or c < d and e < f

每個符號都用空格間隔。

其中邏輯運算符包含 and 和 or , 關係運算符包含 < 、> 、<= 、 >= 、== 、 != 。

輸出格式:

假鏈跳到0,真鏈跳到1,表達式序號從100開始排。

輸入樣例1:

a < b or c < d and e < f

輸出樣例1:

100(j<,a,b,1)
101(j,_,_,102)
102(j<,c,d,104)
103(j,_,_,0)
104(j<,e,f,100)
105(j,_,_,103)

輸入樣例2:

a < b and c > d or e > f

輸出樣例2:

100(j<,a,b,102)
101(j,_,_,104)
102(j>,c,d,1)
103(j,_,_,101)
104(j>,e,f,100)
105(j,_,_,0)
#include<bits/stdc++.h>
using namespace std;
vector <string> ans;
string s;
int main(){

        getline(cin,s);
        s+=" end";
        string x;
        int t =1,f=100;
        stringstream ss(s);
        int id =100;
        while(ss>>x){
            if(x == "or"||x=="end"){
                if(x=="or") f+=2;
                else f=0;
                int i;
                int n = ans.size();
                for(i=0;i<n-3;i+=3){
                printf("%d(j%s,%s,%s,%d)\n",id,ans[i+1].c_str(),ans[i+0].c_str(),ans[i+2].c_str(),id+2);
                id++;
                printf("%d(j,_,_,%d)\n",id,f);
                f =id++;
            }
                printf("%d(j%s,%s,%s,%d)\n",id,ans[i+1].c_str(),ans[i].c_str(),ans[i+2].c_str(),t);
                t = id -(n-3)/3*2;
                id++;
                printf("%d(j,_,_,%d)\n",id,f);
                id++;
                ans.clear();
                if(x=="end")break;
            }

            else if(x == "and") f+=2;
            else
                ans.push_back(x);
            }
    }
發佈了20 篇原創文章 · 獲贊 2 · 訪問量 773
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章