首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
id_tt
2024年3月21日 16:14
堆栈的使用 题解:
P1372
回复 0
|
赞 2
|
浏览 611
#include <stdio.h> #include <stdlib.h> int main() { int n; while(scanf("%d",&n) != EOF) { int *stack= (int *) malloc((n+1) *sizeof(int)); int top = -1; int i; for(i=0; i<n; i++) { char temp; getchar(); scanf("%c",&temp);// if(temp ...
Syou
2023年9月4日 19:23
堆栈的使用 题解:C++ stack
P1372
回复 0
|
赞 2
|
浏览 1.2k
C++ #include <iostream> #include <vector> #include <string> #include <stack> using namespace std; int main(){ int n; string str; while(cin >> n){ if(n == 0){ break; } stack<int> s; int num; cin.ignore(); for(int i = 0; i &l...
题目
堆栈的使用
题解数量
2
发布题解
在线答疑
热门题解
1
堆栈的使用 题解:C++ stack
2
堆栈的使用 题解: