数据结构-静态链表 (C++代码) 摘要:解题思路:注意事项:参考代码:麻烦的要死的题目:#include <stdio.h> #include <string.h> #define MAXSIZE 11 …… 题解列表 2018年03月25日 2 点赞 2 评论 1495 浏览 评分:9.8
数据结构-静态链表 (C++代码) 摘要:# 思路 搞清楚**静态链表**和**普通链表**的区别就可以了。 普通链表,节点的增加、删除,申请栈内存,通过new、delete操作。 静态链表,可用内存已经固定死了,要想实现节点的增加、删…… 题解列表 2019年12月30日 0 点赞 1 评论 607 浏览 评分:9.5
数据结构-静态链表(C++) 摘要:#include <iostream> #include <string> #include <iomanip> #define MAXSIZE 11 using namespace …… 题解列表 2021年08月02日 0 点赞 0 评论 246 浏览 评分:0.0
1677: 数据结构-静态链表 摘要:```cpp #include #include using namespace std; struct ListNode { string elem; int next…… 题解列表 2023年01月31日 0 点赞 0 评论 140 浏览 评分:9.9
优质题解 LikeWater - 1677: 数据结构-静态链表(又是一个怎么也找不到错误的题!!!ヾ(≧へ≦)〃) 摘要:***————天空是蓝色的,海也是蓝色的,但其实海是反射了天空的颜色才变的蓝,我的答案是正确的,大佬的答案也是正确的,但其实是我copy的大佬的代码,ctrl+x!*** **———————————…… 题解列表 2023年03月03日 0 点赞 9 评论 363 浏览 评分:9.9