1. 程式人生 > 其它 >【資料結構1-1】線性表 P1241 括號序列

【資料結構1-1】線性表 P1241 括號序列

出題人的心思太難猜了,嗚嗚嗚

題解

如果理解題目意思,本題非常簡單。但是題目表述問題很嚴重幾乎看不懂,本人理解大致如下:
第一遍掃描,對於右括號 ']' 和 ')' ,尋找左側第一個沒有匹配成功的左括號 '(' 和 '[' ,記錄是否成功匹配,然後結束匹配。最後掃描一遍序列,若該字元成功匹配則直接輸出,若沒有成功匹配則新增配對再輸出。

AC程式碼

#include <bits/stdc++.h>
using namespace std;

bool flag[110] = {0};
map<char,string> c;
string s;

void check(int now,char ch){
    for(int i=now-1;i>=0;i--){
        if(flag[i]) continue;
        if(s[i]==c[ch][0]){
            flag[now]=flag[i]=1;
            return;
        }
        else if(s[i]==c[ch][1]) return;
    }
}


int main(){
    ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    c[']']="[(";
    c[')']="([";
    cin>>s;
    int l=s.length();
    for(int i=0;i<l;i++){
        check(i,s[i]);
    }
    for(int i=0;i<l;i++){
        if(flag[i]) cout<<s[i];
        else if(s[i]=='['||s[i]==']') cout<<"[]";
        else  cout<<"()";
    }
    cout<<endl;
    return 0;
}