- 博客(3)
- 收藏
- 关注
原创 生成随机数链表反转
涉及知识点:①生成随机数 ②将普通数组转化为链表 ③链表反转 #include<iostream> #include<cstdlib> using namespace std; typedef struct node//声明结构体 { int data; node* next; }; struct node* reverse(struct node* head)//链表逆序函数 { if (head->next == NULL || he...
2021-07-17 15:32:25 104
原创 生成随机序列并排序(用归并排序法)
涉及知识点:①生成随机数组 ②归并排序 ③计算程序运行时间 #include<iostream> #include<cstdlib> #include<time.h> #include<stdio.h> #include<ctime> using namespace std; void Random(int* x, int n, int l, int r)//生成n个范围在l~r的随机数,并初始化数组 { cout << "原..
2021-07-17 10:21:50 786
原创 生成随机序列并从小到大排列
涉及知识点:①生成随机序列 ②数组排序③计算程序运行时间 源程序如下: #include<iostream> #include<cstdlib> #include<time.h> #include<stdio.h> #include<ctime> using namespace std; void Random(int* x, int n, int l, int r)//生成n个范围在l~r的随机数,并初始化数组 { cout <...
2021-07-15 12:13:22 1118
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人