首页 > 代码库 > CharMatch(括号匹配)
CharMatch(括号匹配)
用自己定义的链栈实现括号匹配
1 #include"LinkStack.h" 2 bool Match(char *s) 3 { 4 LinkStack<char> tmpS; 5 char tmpCh; 6 for(int i=0;i<strlen(s);i++) 7 { 8 if(s[i]==‘(‘||s[i]==‘[‘||s[i]==‘{‘) 9 tmpS.Push(s[i]);10 else if(s[i]==‘)‘)11 {12 if(tmpS.Empty())13 return false;14 else if(tmpS.Top(tmpCh),tmpCh==‘(‘)15 tmpS.Pop(tmpCh);16 else 17 return false;18 }19 else if(s[i]==‘]‘)20 {21 if(tmpS.Empty())22 return false;23 else if(tmpS.Top(tmpCh),tmpCh==‘[‘)24 tmpS.Pop(tmpCh);25 else 26 return false;27 }28 else if(s[i]==‘}‘)29 {30 if(tmpS.Empty())31 return false;32 else if(tmpS.Top(tmpCh),tmpCh==‘{‘)33 tmpS.Pop(tmpCh);34 else 35 return false;36 }37 }38 if(tmpS.Empty())39 return true; 40 else 41 return false; 42 }
CharMatch(括号匹配)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。