数据结构-链表的基本操作-题解(C++代码) 摘要:这里用cin和cout可能会时间超限,全部改用c中的输入和输出,字符串的比较不用string用char类型 ```cpp #include #include #include using n…… 题解列表 2020年05月08日 0 点赞 0 评论 625 浏览 评分:8.7
数据结构-链表的基本操作-题解(C语言代码) 摘要:1、宏定义: #define OK 1 #define FAULT 0 #define Delete "delete" #define Get "get" …… 题解列表 2020年02月14日 0 点赞 0 评论 454 浏览 评分:9.0
优质题解 数据结构-链表的基本操作-题解(C语言代码) 摘要:首先先把题目要求分明确了。然后利用函数一步一步实现。 题目要求的字符串有四个,分别是 “insert” `L *insert (L *insHead);`、 “delete” `L *del (…… 题解列表 2019年10月01日 0 点赞 4 评论 2674 浏览 评分:9.3
优质题解 Manchester-数据结构-链表的基本操作 摘要:解题思路:首先思考一下总思路①:结点定义typedef struct node_{ int data; struct node_* next; }*node,Node;②:声明所需的函数…… 题解列表 2018年03月14日 22 点赞 6 评论 4477 浏览 评分:9.8
优质题解 LikeWater - 1676: 数据结构-链表的基本操作(本以为一切顺利,没想到只有我是小丑!!!) 摘要:***——写在题目之前:本来以为这是一个不是很难,只是考验基本功的题目,没想到它却给了我极大的压力与坏心情,在我完成它的时候我满心欢喜的测试都是正确的让我飘飘然,而时间超限的警告又直接将我打回原形,心…… 题解列表 2023年03月02日 0 点赞 3 评论 1275 浏览 评分:9.9
1676: 数据结构-链表的基本操作(C语言描述) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> //定义结点类型 typedef struct …… 题解列表 2021年12月16日 0 点赞 0 评论 383 浏览 评分:9.9
数据结构-链表的基本操作-题解(Java代码) 摘要:2019-10-25 12:42:28 星期五 import java.util.ArrayList; import java.util.Scanner; imp…… 题解列表 2019年10月25日 0 点赞 0 评论 497 浏览 评分:9.9
链表c语言纯享版 摘要:```c #include #include #include // 定义链表节点结构体 typedef struct node { int data; …… 题解列表 2024年08月21日 0 点赞 0 评论 98 浏览 评分:9.9
数据结构-链表的基本操作 (C语言代码) 摘要: 声明:此代码仍然可以改进,望诸位大佬积极修正!!!解题思路: 定义结点: typedef struct Link { struct Link *nex…… 题解列表 2019年02月22日 0 点赞 3 评论 1133 浏览 评分:9.9
c语言 较为笨重的做法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct Node{ int x; struct Node *nex…… 题解列表 2023年12月11日 0 点赞 0 评论 105 浏览 评分:9.9