主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
huanghu
2024年3月23日 14:27
遍历链表 题解:c++ 头插法
P1405
回复 0
|
赞 0
|
浏览 515
#include <iostream> #include <vector> #include<string> #include<malloc.h> #include<algorithm> using namespace std; typedef struct LinkNode{ int data; struct LinkNode *next; }LinkNode,*LinkList; //采用头插法,因为头插法会逆置原始数组,则将arr先按从大大小排序后再传进来 LinkList cre...
wordC
2021年3月17日 10:18
1405-遍历链表,注释详细(c语言)
P1405
回复 0
|
赞 0
|
浏览 8.2k
#include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *next; }node; //创建链表 node* createList(int num[], int length) { node *p, *head, *r; //初始化头结点 head = (node *)malloc(sizeof(node)); head->next = NULL; //r定义为尾...
kodou
2020年7月5日 21:13
链表构造+排序+遍历输出
P1405
回复 0
|
赞 1
|
浏览 9.4k
#include<bits/stdc++.h> using namespace std; struct node{ int num; struct node *next; }; struct node * create(){ struct node *head; head = (struct node*)malloc(sizeof(node)); head->num...
题目
遍历链表
题解数量
3
发布题解
热门题解
1
链表构造+排序+遍历输出
2
遍历链表 题解:c++ 头插法
3
1405-遍历链表,注释详细(c语言)