没有使用链栈而且输入答案错误或者格式错误的进来看看,就是你的输出乱换行的(c语言代码) 摘要:使用顺序栈有一个点要注意,很坑的点,那就是你的字符输入会把换行符给存进去,这就会导致你的循环出大问题,就是你输入字符然后换行,程序会认为你输入了两次实际你只输入了一次,然后就会出现下面这种效果 ![…… 题解列表 2024年08月07日 0 点赞 0 评论 153 浏览 评分:9.9
链式栈的练习,可供食用参考... 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>#include<stdlib.h>#include<stdbool.h>#include<string.h>typedef str…… 题解列表 2024年06月23日 0 点赞 0 评论 94 浏览 评分:9.9
顺序栈练习,可供食用 摘要:解题思路:简陋代码但还算简单,可供食用参考。注意事项:①清理缓冲区换行符。 ②题目要求:一次开始时堆栈为空。参考代码:#include#include#include#i…… 题解列表 2024年06月23日 0 点赞 0 评论 89 浏览 评分:9.9
堆栈的使用 摘要:解题思路:注意事项:参考代码:def stack_operation(commands): stack = [] output = [] for command in command…… 题解列表 2023年12月06日 0 点赞 0 评论 65 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#define len sizeof(Stack)typedef struct s { i…… 题解列表 2023年10月08日 0 点赞 0 评论 139 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h> typedef struct linkedstack { int data; st…… 题解列表 2023年09月13日 0 点赞 0 评论 91 浏览 评分:0.0
堆栈的使用(数组模拟数组)(acwing) 摘要:解题思路: 根据题目所述即可注意事项: 简单暴力即可参考代码:#include<iostream> using namespace std; const int N=10010; int p…… 题解列表 2023年07月31日 0 点赞 0 评论 101 浏览 评分:9.9
数组模拟栈的使用 摘要:解题思路:数组模拟栈了解栈是一个什么结构:先进后出的线性结构表了解栈顶的初始位置:=-1当栈满时的条件是:栈顶等于数组容量减一当栈空的条件是:栈顶位置为-1处理好当空栈时的异常栈和队列区别:一个是先进…… 题解列表 2023年07月17日 0 点赞 0 评论 68 浏览 评分:0.0
就栈的基本应用 有解析 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,n; char a; while(cin >> …… 题解列表 2023年03月18日 0 点赞 0 评论 63 浏览 评分:0.0
1733: 堆栈的使用 答案太少,凑数的 摘要:```cpp #include using namespace std; int main() { int n; while(cin >> n) { …… 题解列表 2022年06月23日 0 点赞 0 评论 189 浏览 评分:0.0