数据结构-行编辑程序-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ char a[200],b[200]; …… 题解列表 2020年03月17日 0 点赞 0 评论 410 浏览 评分:0.0
数据结构-行编辑程序-题解(C语言代码) 摘要:###### 参考代码 ```c #include #include char strBuffer[201]; int lineCount = 0; void pushStac…… 题解列表 2019年08月24日 0 点赞 0 评论 637 浏览 评分:8.0
数据结构-行编辑程序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { char str1…… 题解列表 2018年04月19日 0 点赞 0 评论 822 浏览 评分:0.0
优质题解 Manchester- 数据结构-行编辑程序 摘要:解题思路:①:输入字符串,将字符串中字符逐个入栈②:入栈时,非'#' 和非'@'字符入栈,遇到'#'字符,出栈前一个入栈字符,遇到'@'…… 题解列表 2018年03月18日 6 点赞 0 评论 1512 浏览 评分:9.9