主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
15240928957
2024年3月20日 21:26
Runtime Error 通过75%
P1501
回复 3
|
赞 0
|
浏览 646
#include <iostream> #include <stack> #include <cstring> using namespace std; int main() { stack<int> st; char s[10005]; cin >> s; for (int i = 0; i < strlen(s); i++) &n...
我与代码的故事
2024年5月6日 23:30
括号匹配(C++ string栈) 题解:
P1501
回复 0
|
赞 1
|
浏览 482
#include <bits/stdc++.h> using namespace std; string str; int main() { cin >> str; string stk1, stk2; for(int i = 0; i < str.size(); i ++) { if(str[i] == '(') stk1.push_back(')'); else if(str[i] == '[') stk1.push_back(']'); else if(str[i] == ')') stk2....
easymoney
2024年3月22日 15:27
括号匹配 题解:
P1501
回复 0
|
赞 0
|
浏览 610
#include <stdio.h> #include <iostream> #include <algorithm> #include <stack> #include <string.h> using namespace std; int main(){ char s[1000]; cin >> s; int len =strlen(s); stack<char> st; for(int i = 0;i <len;i++){ if(!st.empty()...
Śś
2024年3月18日 17:42
括号匹配 题解:画两个栈演示一下可能会比较形象
P1501
回复 0
|
赞 0
|
浏览 442
#include<iostream> #include<stack> #include<cstring> using namespace std; stack<char> s1,s2; bool Judge(char a,char b) { if(a=='('&&b==')') return true; if(a=...
FIVEszc
2024年3月15日 16:05
括号匹配 题解:求大佬解惑,显示runtime error,75%数据
P1501
回复 4
|
赞 1
|
浏览 593
#include <bits/stdc++.h> using namespace std; int main() { stack <char> mystack; char s[1000]; int tag=0; scanf("%s",s); int len=strlen(s); for(int j=0;j<len;j++) { if(s[j]=='('||s[j]=='[') mystack.push(s[j]); ...
Cookie‘s AE86
2024年3月16日 11:47
括号匹配 题解:c++ stack/map实现
P1501
回复 0
|
赞 0
|
浏览 553
#include<bits/stdc++.h> using namespace std; map<char, char> bkmatch = {{')', '('}, {']', '['}}; bool match(string s); int main(){ string s; cin >> s; if(match(s)) c...
huanghu
2024年3月13日 00:06
括号匹配 题解:
P1501
回复 0
|
赞 0
|
浏览 739
#include<stdio.h> #include<iostream> #include<stack> #include<string> using namespace std; int main(){ stack<char> stk; string str; cin>>str; int len = str.length(); for(int i = 0; i<len; i++){ if(!stk.empty()&&...
buluoxu
2024年3月12日 11:33
括号匹配 题解:巧用栈简单解法
P1501
回复 0
|
赞 0
|
浏览 380
#include <iostream> #include <stack> #include <string> using namespace std; int main(){ stack<char> c; string s; cin >> s; for(int i = 0;i < s.size();i++) { if(s[i] == '(' || s[i] == '[' ) { c.push(s[i]); } else if(s[i] == ']') ...
1935569240
2024年3月7日 15:55
括号匹配 题解:来了哦
P1501
回复 0
|
赞 0
|
浏览 537
#include<iostream> #include<algorithm> #include<stack> #include<string> using namespace std; int main() { stack<char> stac; string s; cin >> s; int len = s.size(); &n...
孙某人
2024年2月18日 18:28
括号匹配 题解:
P1501
回复 0
|
赞 2
|
浏览 528
#include<iostream> #include <string.h> using namespace std; int main(){ char a[10005],stack[10005]; for(int i=0;i<10005;i++){ a[i]=0; stack[i]=0; } int num=0,top=-1; gets(a); for(int i=0;i<strlen(a);i++) { if(num>0){ char now=stack[top];//收集现在的栈顶元素...
1
2
题目
括号匹配
题解数量
20
发布题解
热门题解
1
1501 括号匹配 栈经典题
2
括号匹配 题解:
3
括号匹配(C++ string栈) 题解:
4
括号匹配(仅有[]与())
5
1067括号匹配(傻瓜式的匹配)
6
C-栈
7
java实现栈的应用
8
括号匹配 题解:求大佬解惑,显示runtime error,75%数据通过
9
括号匹配 题解:c++ stack/map实现
10
//括号匹配算法-- 栈的应用