结构体链表,超清晰思路 #1676: 数据结构-链表的基本操作(C++) 摘要:**数据量很大时要使用C语言的输入输出,这道题如果用cin,cout很可能超时** ``` #include #include typedef struct lNode { int d…… 题解列表 2024年11月23日 2 点赞 0 评论 82 浏览 评分:0.0
用数组来模拟链表 摘要:解题思路:数组也可以模拟链表:用e[N]记当前数组元素的值,相当于数据域;ne[N]指向下一个元素,相当于指域;idx用于给每次添加元素时做独一无二标记。注意事项:1.这题在输入字符串的时候不能用ci…… 题解列表 2024年09月16日 0 点赞 0 评论 120 浏览 评分:9.9
时间超限!!!就来看我 摘要:解题思路:都是链表的基本操作 思路就不多赘述了,主要是时间超限问题。输入输出最好都是用scanf、printf,而不是cin,cout;可能还有人会有疑问说我输入数值时没使用cin/cout啊,包括我…… 题解列表 2024年04月29日 0 点赞 0 评论 134 浏览 评分:8.0
优质题解 LikeWater - 1676: 数据结构-链表的基本操作(本以为一切顺利,没想到只有我是小丑!!!) 摘要:***——写在题目之前:本来以为这是一个不是很难,只是考验基本功的题目,没想到它却给了我极大的压力与坏心情,在我完成它的时候我满心欢喜的测试都是正确的让我飘飘然,而时间超限的警告又直接将我打回原形,心…… 题解列表 2023年03月02日 0 点赞 3 评论 1275 浏览 评分:9.9
1676: 数据结构-链表的基本操作 摘要:说实话,用cin和cout输入输出实在是太慢了,所以我用scanf和printf进行输入输出。 ```cpp #include #include using namespace std; t…… 题解列表 2023年01月31日 0 点赞 0 评论 245 浏览 评分:9.9
编写题解 1676: 数据结构-链表的基本操作 摘要:### 使用结构体存数据和地址 ![](/image_editor_upload/20221030/20221030113258_63779.png) ```cpp typedef struct…… 题解列表 2022年10月30日 0 点赞 0 评论 186 浏览 评分:0.0
SinzoL--题解 1676: 数据结构-链表的基本操作 摘要:####好久没写了,今天试着写一下 ####我是靠自己的理解来写的,所以极有可能会出现一些时候处理得复杂了或不规范的情况 我们先来定义一下所需函数: ```cpp void show(note…… 题解列表 2022年08月05日 0 点赞 0 评论 126 浏览 评分:0.0
有大佬帮我看看咋个就运行超时了呢,答案是对的 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef struct Node{ int data; str…… 题解列表 2022年05月24日 0 点赞 1 评论 111 浏览 评分:0.0
数据结构-链表的基本操作(c++) 摘要:#include <iostream> #include <cstring> #include <string> #include <stdlib.h> using namespace std…… 题解列表 2022年03月01日 0 点赞 0 评论 590 浏览 评分:9.9
数据结构-链表的基本操作 摘要:```cpp #include #include //链表 typedef struct LNode{ int data; struct LNode *next; …… 题解列表 2022年02月18日 0 点赞 0 评论 254 浏览 评分:0.0