码迷,mamicode.com
首页 >  
搜索关键字:srand    ( 611个结果
Homework2-心理魔术
# include "stdio.h"# include "stdlib.h"# include <time.h>int main(int argc,char*argv[]) { int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand( ...
分类:其他好文   时间:2019-03-25 01:04:07    阅读次数:135
心理游戏
# include "stdio.h"# include "stdlib.h"# include <time.h>int main(int argc,char*argv[]) { int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand( ...
分类:其他好文   时间:2019-03-24 23:16:20    阅读次数:177
心理魔术
#include <stdio.h>#include <stdlib.h>#include "time.h"int main(){ int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand()%6+1; for(i=1;i<=100;i+ ...
分类:其他好文   时间:2019-03-24 21:35:24    阅读次数:100
心理魔术
# include "stdio.h"# include "stdlib.h"# include <time.h>int main(int argc,char*argv[]) { int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand( ...
分类:其他好文   时间:2019-03-24 09:57:38    阅读次数:134
心理魔术
// 心理魔术.cpp : Defines the entry point for the application.// #include "time.h"#include"stdlib.h"#include"stdio.h" int main(){ int i; char c,gu; srand( ...
分类:其他好文   时间:2019-03-23 15:55:01    阅读次数:134
结构体重载运算符&srand&rand
先上代码,再按代码讲解 #include<stdio.h>#include<string.h>#include<stdlib.h>#include<time.h>#include<algorithm>using namespace std;struct shudui{ int w,e; bool o ...
分类:其他好文   时间:2019-03-23 00:43:58    阅读次数:106
Redis 基本操作
Redis 基本操作 参考: "An introduction to Redis data types and abstractions" 中文翻译: "看云" Redis命令查询: "Command Reference Redis" Strings Lists other llen key lis ...
分类:其他好文   时间:2019-03-19 01:17:30    阅读次数:208
单链表类,链表逆置
实现文件如下: ...
分类:其他好文   时间:2019-02-24 17:26:45    阅读次数:192
#207. 共价大爷游长沙
题目描述 http://uoj.ac/problem/207 题解 因为这道题有删边和加边的操作,所以我们不能再链上操作,只能在点上操作。 考虑一些正确性玄学的算法。 我们给每一次链加随机一个权值,这样对于每次询问就查一下这条边分成的两块中的权值异或和是否等于当前所有链的权值异或和即可。 代码 ...
分类:其他好文   时间:2019-02-23 10:41:20    阅读次数:166
C++随机数
在许多情况下,需要生成随机数。关于随机数生成器,有两个相关的函数。一个是 rand() ,该函数只返回一个伪随机数。生成随机数之前必须先调用 srand() 函数。 下面是一个关于生成随机数的简单实例。实例中使用了 time() 函数来获取系统时间的秒数作为种子,通过调用 rand() 函数来生成1 ...
分类:编程语言   时间:2019-02-16 20:50:08    阅读次数:175
611条   上一页 1 ... 9 10 11 12 13 ... 62 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!