NYOJ 2题 括号配对问题
摘要:
http://acm.nyist.net/JudgeOnline/problem.php?pid=21、我的代码: #include <iostream>
#include <cstring>
using namespace std; #define MAXSIZE 10005
int main(void)
{ int k; cin >> k; while(k--) { char str[MAXSIZE]; cin >> str; char stack[MAXSIZE]; int len = strlen(str); int j = 0; boo 阅读全文
posted @ 2012-04-04 00:52 c语言源码 阅读(177) 评论(0) 推荐(0)
浙公网安备 33010602011771号