北京电子科技学院(BESTI) 实 验 报 告 课程: 程序设计与数据结构 班级: 1623 姓名: 齐力锋 学号: 20162326 成绩: 指导教师: 娄嘉鹏/王志强 实验日期: 2017年3月17日 实验密级:非密级 预习程度: 优良 实验时间: 2 Hours 仪器组次: 必修/选修: 必修 ...
分类:
编程语言 时间:
2017-03-27 00:32:46
阅读次数:
188
4537: [Hnoi2016]最小公倍数 Description 给定一张N个顶点M条边的无向图(顶点编号为1,2,…,n),每条边上带有权值。所有权值都可以分解成2^a*3^b的形式。现在有q个询问,每次询问给定四个参数u、v、a和b,请你求出是否存在一条顶点u到v之间的路径,使得路径依次经过的 ...
分类:
其他好文 时间:
2017-03-27 00:32:22
阅读次数:
204
1.安装SeleniumIDE插件 SeleniumIDE是FireFox的一个插件,它支持脚本的录制和导出等。安装时,我们可以直接搜索SeleniumIDE,进入其官网,在火狐浏览器中安装该插件,安装成功后,会在浏览器右上角出现这样的图标。 2.学会使用SeleniumIDE录制脚本和导出脚本 点 ...
分类:
其他好文 时间:
2017-03-27 00:31:43
阅读次数:
154
首先:需要确定已编好的Python程序的存储路径;(即在哪个磁盘,哪个文件中) 其次:打开cmd命令,输入该程序所在磁盘,敲回车键;(例如其存储在E盘,则输入“E:”,敲回车键。) 然后:输入python.exe 文件路径 文件名;(例如:python.exe e:\下雨了\py\1.1.py) 最 ...
分类:
编程语言 时间:
2017-03-27 00:31:25
阅读次数:
265
nt rand(void); 返回一个随机数0 ~ pow(2, sizeof(int))-1long int random(void); 返回一个随机数0 ~ pow(2, sizeof(long int))-1void srand(unsigned int seed); 设置rand函数的种子v ...
分类:
编程语言 时间:
2017-03-27 00:31:02
阅读次数:
1404
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex ...
分类:
编程语言 时间:
2017-03-27 00:30:34
阅读次数:
193
这是一台squid代理服务器(一台式机,安装的是redhat 5.4 64位操作系统),每天下午4点一台服务器通过ftp上传主机数据库巡检报告到这台代理PC机的一个用户家目录下的xunjian目录下,这台PC再通过发送邮件的方式将巡检报告发给组内成员,进行巡检 此为背景,之前的selinux设置的为 ...
分类:
Web程序 时间:
2017-03-27 00:30:17
阅读次数:
241
2017/3/16 20:03:07 Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Example:Given a = 1 and b = 2, retu ...
分类:
其他好文 时间:
2017-03-27 00:29:17
阅读次数:
156
2017/3/15 21:47:04 Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a ...
分类:
其他好文 时间:
2017-03-27 00:28:56
阅读次数:
240
2017/3/14 15:36:44 Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. N ...
分类:
其他好文 时间:
2017-03-27 00:28:27
阅读次数:
191
连接数据库: 选择数据库: 关闭数据库: 执行一条mysql查询: 插入新数据到数据库中: 插入数据后,获取插入数据的自增ID: 在mysql中,执行插入语句以后,可以得到自增的主键id,通过PHP的mysql_insert_id函数可以获取该id。 这个id的作用非常大,通常可以用来判断是否插入成 ...
分类:
数据库 时间:
2017-03-27 00:28:08
阅读次数:
164
2017/3/16 22:36:02 Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, t ...
分类:
其他好文 时间:
2017-03-27 00:27:48
阅读次数:
151
ECMAScript中的模版字符串 1.模版字符串拼接 let name="kerry"; let age = 23; let str='${name} is ${age} years old'; console.log(str);// kerry is 23 years old 2.保持原来的字符 ...
分类:
其他好文 时间:
2017-03-27 00:27:26
阅读次数:
189
2017/3/14 15:23:55 The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integ ...
分类:
其他好文 时间:
2017-03-27 00:27:00
阅读次数:
125
1.矩阵的初始化 (1)创建一个 3*5的全0矩阵和全1矩阵 (2)生成随机矩阵 (3)单位阵 2. 矩阵的元素运算 矩阵的元素运算是指矩阵在元素级别的加、减、乘、除运算。 (1)元素的加和相减 条件:矩阵的行数和列数必须相同。 数学公式:(A±B)i?j = Ai,j ± Bi,j 。 (2)矩阵 ...
分类:
其他好文 时间:
2017-03-27 00:26:38
阅读次数:
234
2017/3/23 22:23:57 Given an integer (signed 32 bits), write a function to check whether it is a power of 4. Example:Given num = 16, return true. Given ...
分类:
其他好文 时间:
2017-03-27 00:25:51
阅读次数:
139
模仿轮播图中用到了排他思想,定时器和一些方法,刚开始在第一张图片和最后一张图片的衔接处处理的不好,后来解决了bug,下面的是我的代码 其实这个代码还可以进行封装,减小代码量,下面的是封装以后的: 封装方法的tool.js引用包: ...
分类:
其他好文 时间:
2017-03-27 00:25:27
阅读次数:
241