优质题解 Manchester- 数据结构-行编辑程序 摘要:解题思路:①:输入字符串,将字符串中字符逐个入栈②:入栈时,非'#' 和非'@'字符入栈,遇到'#'字符,出栈前一个入栈字符,遇到'@'…… 题解列表 2018年03月18日 6 点赞 0 评论 1512 浏览 评分:9.9
数据结构-行编辑程序-题解(C语言代码) 摘要:###### 参考代码 ```c #include #include char strBuffer[201]; int lineCount = 0; void pushStac…… 题解列表 2019年08月24日 0 点赞 0 评论 638 浏览 评分:8.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>struct s{ char data[10000]; int top;}n;voi…… 题解列表 2023年10月22日 0 点赞 0 评论 73 浏览 评分:0.0
【C语言题解】编写题解 1681: 数据结构-行编辑程序 摘要:``` #include #include #define Elemetype char typedef struct SNode{ int Data[1000]; i…… 题解列表 2024年03月21日 0 点赞 0 评论 114 浏览 评分:0.0
1681: 数据结构-行编辑程序(c语言代码,包你懂的) 摘要:此题有两个点要注意,就是空格要不要管,还有多组数据的输入怎么处理 题目的输入是这样的: whil##ilr#e(s#*s) outcha@ putchar(*s=#++);这个输入前面是…… 题解列表 2024年08月07日 0 点赞 0 评论 86 浏览 评分:0.0