数据结构中字符串的匹配

时间:2015-05-02 17:52:18
【文件属性】:

文件名称:数据结构中字符串的匹配

文件大小:4KB

文件格式:VCPROJ

更新时间:2015-05-02 17:52:18

数据结构 字符串匹配

教材中一题。字符串匹配int main() { stack openings; char symbol; bool is_matched = true; while(is_matched&&(symbol=cin.get())!='\n') { if(symbol=='{'||symbol=='('||symbol=='[') openings.push(symbol); if(symbol=='}'||symbol==')'||symbol==']') { if(openings.empty()) { cout<<"Unmatched closing bracket"<


网友评论