无语数据结构-广义表的基本操作 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <stack>using namespace std;int main(){ stack<char> s; …… 题解列表 2022年11月04日 0 点赞 0 评论 127 浏览 评分:9.9
数据结构-广义表的基本操作-题解(C++代码) 摘要:广义表的深度就是()的个数的最大值 思路就是,用栈来存储,遇到(进栈,遇到),统计此时栈中元素的个数,并将(出栈,并将值存到max中,max就是深度 ```cpp #include #inc…… 题解列表 2020年03月31日 0 点赞 0 评论 483 浏览 评分:4.7
数据结构-广义表的基本操作 (C语言代码) 摘要:参考代码:#include<stdio.h> #include<string.h> #include<malloc.h> #define MAX_STR_LEN 101 typedef…… 题解列表 2018年08月14日 1 点赞 0 评论 892 浏览 评分:0.0