优质题解 Manchester- 数据结构-行编辑程序 摘要:解题思路:①:输入字符串,将字符串中字符逐个入栈②:入栈时,非'#' 和非'@'字符入栈,遇到'#'字符,出栈前一个入栈字符,遇到'@'…… 题解列表 2018年03月18日 6 点赞 0 评论 1512 浏览 评分:9.9
数据结构-行编辑程序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { char str1…… 题解列表 2018年04月19日 0 点赞 0 评论 823 浏览 评分:0.0
数据结构-行编辑程序-题解(C语言代码) 摘要:###### 参考代码 ```c #include #include char strBuffer[201]; int lineCount = 0; void pushStac…… 题解列表 2019年08月24日 0 点赞 0 评论 638 浏览 评分:8.0
数据结构-行编辑程序-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ char a[200],b[200]; …… 题解列表 2020年03月17日 0 点赞 0 评论 412 浏览 评分:0.0
数据结构-行编辑程序-题解(C++代码) 摘要:```cpp #include #include #include #include #include using namespace std; int main() { …… 题解列表 2020年03月17日 0 点赞 0 评论 467 浏览 评分:8.0
数据结构-行编辑程序-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { char a[1000]; string s…… 题解列表 2020年06月04日 0 点赞 0 评论 520 浏览 评分:6.0
题解 1681: 数据结构-行编辑程序 stack 摘要:#include<iostream> #include<stack> #include<string> using namespace std; int main() { stri…… 题解列表 2022年05月25日 0 点赞 0 评论 113 浏览 评分:2.0
1681: 数据结构-行编辑程序(c++) 摘要:解题思路:此题的关键就是getline函数,string 类中的方法,不然后续的空格无法输出,或者答案错误注意事项:参考代码:#include #include using namespace s…… 题解列表 2022年10月30日 0 点赞 0 评论 240 浏览 评分:9.9
题目 1681: 数据结构-行编辑程序 摘要:解题思路:栈的基本操作中的初始化,入栈和出栈注意事项:见 代码参考代码:#define _CRT_SECURE_NO_WARNINGS 1#include <stdio.h>#include <std…… 题解列表 2023年08月02日 0 点赞 0 评论 65 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>struct s{ char data[10000]; int top;}n;voi…… 题解列表 2023年10月22日 0 点赞 0 评论 74 浏览 评分:0.0