srand()与rand()生成随机数 经过测试,当srand的值确定时,其对应的rand值也是确定的。 #include <iostream> using namespace std; int main() { for (int i = 0; i <= 10; i++) { srand(i); c ...
分类:
其他好文 时间:
2020-01-10 20:32:36
阅读次数:
75
此文件是随机生成10个0~100的数 #include <iostream> #include <ctime> #include <cstdlib> using namespace std; int main() { int i,j; srand((unsigned)time(NULL)); //生 ...
分类:
编程语言 时间:
2020-01-10 12:21:26
阅读次数:
68
运行结果 sort data: [8.6] [1.2] [5.1] [8.3] [6.5] [4.8] [5.3] [5.3] [7.3] [3.6] quick_sort: [1.2] [3.6] [4.8] [5.1] [5.3] [5.3] [6.5] [7.3] [8.3] [8.6] li ...
分类:
编程语言 时间:
2020-01-07 13:13:35
阅读次数:
78
#include<iostream> #include<cstdio> #include<cstring> #include<ctime> #include<cstdlib> using namespace std; int main(){ srand(time(0));rand();rand(); ...
分类:
其他好文 时间:
2020-01-03 19:21:52
阅读次数:
92
通过观察递归实现,用循环和栈模拟递归实现中结点入栈和出栈的过程。 ...
分类:
其他好文 时间:
2019-12-29 18:31:21
阅读次数:
60
前言 这篇主要是记录一下之前看到的一个公开课视频内容,大体讲解的是Redis各种数据结构的应用场景; 如视频所说,一些中小型公司使用Redis的应用场景比较单一, 使用的数据结构大部分是string,或者是hash, 其他数据结构基本使用的很少, 至少我呆过的公司目前是这样的,尴尬!!! 数据结构 ...
分类:
其他好文 时间:
2019-12-07 16:39:55
阅读次数:
68
#include <stdio.h> #include <stdlib.h> int main() { srand(100); //设置种子,种子一样,每次启动程序时生成的数也一样 int i; int num; for(i=0; i<10; i++) { num = rand(); printf( ...
分类:
其他好文 时间:
2019-12-04 01:38:29
阅读次数:
94
练习1-1 #include <stdio.h> #include<stdlib.h> int main() { srand(time(0)); int anw = rand() % 7; printf("您的签运是:"); switch (anw) { case 0:printf("大吉"); b ...
分类:
编程语言 时间:
2019-12-02 23:17:22
阅读次数:
142
(blog主要用于展示算法流程) 插入排序算法:通过对未排序的数据逐个插入合适的位置而完成排序工作 流程: (1)先对数组前两个数据进行从小到大排序 (2)将第三个数据与前两个数据比较,将第三个数据插入合适的位置 (3)将第四个数据插入已排序好的前三个数据中 (4)不断重复,直到把最后一个数据插入合 ...
分类:
编程语言 时间:
2019-11-28 11:45:27
阅读次数:
78
阅读目录(Content) 一、数据类型 二、管理实战 1.通用操作 2.strings(字符)类型操作 3.hash(字典)类型操作 4.List(列表)类型操作 5.Set(集合)类型操作 6.Sorted-Set(有序集合)类型操作 回到顶部(go to top) 一、数据类型 String: ...
分类:
其他好文 时间:
2019-11-21 13:45:26
阅读次数:
77