时间超限!!!就来看我 摘要:解题思路:都是链表的基本操作 思路就不多赘述了,主要是时间超限问题。输入输出最好都是用scanf、printf,而不是cin,cout;可能还有人会有疑问说我输入数值时没使用cin/cout啊,包括我…… 题解列表 2024年04月29日 1 点赞 0 评论 174 浏览 评分:8.0
Jayden-数据结构-链表的基本操作(自定义函数实现模块化功能) 摘要:解题思路: 本题是一道很简单的结构体基本操作的问题,需要注意实现各个功能的代码逻辑问题自定义函数:①创建链表(createList)②创建节点(createNode)③插入节点(注意输入的顺序与…… 题解列表 2024年03月21日 0 点赞 0 评论 219 浏览 评分:9.9
比较简单的操作 摘要:解题思路:注意事项:记得每次输出后要换行参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>struct str{ int …… 题解列表 2024年01月29日 0 点赞 0 评论 142 浏览 评分:9.9
c语言 较为笨重的做法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct Node{ int x; struct Node *nex…… 题解列表 2023年12月11日 0 点赞 0 评论 150 浏览 评分:9.9
术式反转 赫 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct _fushu{ int va…… 题解列表 2023年09月30日 0 点赞 0 评论 218 浏览 评分:0.0
链表的基本操作 摘要:解题思路:注意事项:初始列表插入时顺序相反,且无"insert OK"提示,加入flag判断是否为初始列表操作;参考代码:#include <stdio.h>#include <stdlib.h>#i…… 题解列表 2023年08月22日 0 点赞 0 评论 161 浏览 评分:0.0
数据结构-链表的基本操作-JAVA实现题解 摘要: import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; …… 题解列表 2023年03月05日 0 点赞 0 评论 156 浏览 评分:0.0
优质题解 LikeWater - 1676: 数据结构-链表的基本操作(本以为一切顺利,没想到只有我是小丑!!!) 摘要:***——写在题目之前:本来以为这是一个不是很难,只是考验基本功的题目,没想到它却给了我极大的压力与坏心情,在我完成它的时候我满心欢喜的测试都是正确的让我飘飘然,而时间超限的警告又直接将我打回原形,心…… 题解列表 2023年03月02日 0 点赞 3 评论 1383 浏览 评分:9.9
1676: 数据结构-链表的基本操作 摘要:说实话,用cin和cout输入输出实在是太慢了,所以我用scanf和printf进行输入输出。 ```cpp #include #include using namespace std; t…… 题解列表 2023年01月31日 0 点赞 0 评论 324 浏览 评分:9.9
编写题解 1676: 数据结构-链表的基本操作 摘要:### 使用结构体存数据和地址  ```cpp typedef struct…… 题解列表 2022年10月30日 0 点赞 0 评论 225 浏览 评分:0.0