主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
我与代码的故事
2024年4月20日 19:33
单链表 题解:
P1015
回复 0
|
赞 1
|
浏览 460
#include<bits/stdc++.h> using namespace std; int a[5]; int main() { for(int i = 0; i < 5; i ++) cin >> a[i]; sort(a, a + 5); for(int i = 0; i < 5; i ++) cout << a[i] << " "; return 0; }
RingoCrystal
2024年4月3日 17:33
单链表 题解:你怎么知道我next节点全是nullptr
P1015
回复 0
|
赞 0
|
浏览 514
#include <bits/stdc++.h> using namespace std; struct Node { int Element; // 节点中的元素为整数类型 struct Node * Next; // 指向下一个节点 }; bool rule(Node a,Node b){ return a.Element<b.Element; } int main(){ vector<Node> sheet; int n=5; int x; while(n--){ cin>...
为欢几何
2024年3月24日 14:47
单链表 题解:小伙伴们可以帮我检查一下哪里有问题吗?0%
P1015
回复 2
|
赞 0
|
浏览 581
#include<bits/stdc++.h> using namespace std; struct Node { int Element; // 节点中的元素为整数类型 struct Node * Next; // 指向下一个节点 }; struct Node* create(int a[10]) { struct Node* head = (struct Node *)malloc(sizeof(Node));//建立头节点 he...
熹微
2024年3月27日 21:56
单链表 题解:
P1015
回复 0
|
赞 0
|
浏览 574
C语言 边输入一个数据边进行链表插入 了解一下 #include<stdio.h> typedef struct Node{ int num; struct Node *Next; }node; int main(){ node *head,*s,*ptr; head = (node *)malloc(sizeof(node)); head -> Next = NULL;  ...
张会老儿
2024年3月25日 16:41
单链表 题解:我这个怎么不对,先把输入的数排序,然后用头插法插进链表,
P1015
回复 1
|
赞 0
|
浏览 541
#include<iostream> #include<stdio.h> #include<algorithm> #include<string.h> #include<stdlib.h> using namespace std; int compare(const void *a,const void *b){ return (*(int *)b-*(int *)a); } typedef struct node { int ...
1576684866
2024年3月22日 15:16
单链表 题解:顺便回忆一下头插法
P1015
回复 0
|
赞 0
|
浏览 609
#define _CRT_SECURE_NO_WARNINGS #include <cstdio> using namespace std; #include <string.h> #include <algorithm> #include <iostream> #include <map> #include <stdlib.h> typedef struct Node { int Element; // 节点中的元素为整数类型 &n...
光明守护神
2024年3月9日 21:27
单链表 题解:你怎么知道我没插?
P1015
回复 1
|
赞 1
|
浏览 622
#include<algorithm> #include <iostream> using namespace std; int main() { int a[5]; for (int i = 0; i < 5; i++) { cin >> a[i]; } sort(a, a + 5); for (int i = 0; i < 5; i++) { cout << a[i] << " "; } cout << endl; return 0;...
lingdongyang
2024年3月13日 21:30
单链表 题解:
P1015
回复 0
|
赞 1
|
浏览 888
#include<stdio.h> #include<string.h> #include<stdlib.h> typedef struct Node { int Element;//数据 struct Node* Next;//存储下一个结点的地址 }Node; void sort(int num[]) { for (int i = 0; i < 5; i++) { for (int j = 0; j < 5 - 1 - i; j++) { if (num[j + 1] < num...
周小黑02477
2024年3月11日 19:20
为什么程序不对劲,有大佬看看吗
P1015
回复 2
|
赞 0
|
浏览 579
#include<stdio.h> #include<string> #include <stdlib.h> #include<iostream> #include<string.h> #include<algorithm> using namespace std; int s[10]; struct node { int element; struct node *next; }; struct node* create() { struct node* head, ...
orderrr
2024年3月10日 17:31
单链表 题解:c 解决
P1015
回复 0
|
赞 0
|
浏览 771
#include <stdio.h> #include <malloc.h> #include <stdlib.h> struct Node { int Element; // 节点中的元素为整数类型 struct Node *Next; // 指向下一个节点 }; void sort(int num[]) // 冒泡排序 { for (int i = 0; i < 5; i++) { int min = i; for (int j...
1
2
3
4
题目
单链表
题解数量
36
发布题解
热门题解
1
(单链表的创建和排序)练习是学知识的,钻空子没有意义
2
1015单链表(注释详细)
3
单链表 题解:C++
4
c-头插法
5
单链表 带头结点 冒泡排序 易于理解 可ac
6
头插法建链表,带头结点单链表直接插入排序
7
单链表 题解:
8
单链表 题解:你怎么知道我没插?
9
直接选择,头插法建表
10
单链表解法