蒟阵乘法,顾名思义,就是~~蒟蒻的乘法~~两个蒟阵相乘 公式:$a\times b,a$为$m\times k$的蒟阵$,b$为$k\times n$的蒟阵$,c[i][j]=\sum_{i=1}^{k}a[i][k]\times b[k][j]$ 参考code: 例:斐波拉契数列 "P1962" ...
分类:
其他好文 时间:
2019-03-08 22:02:38
阅读次数:
157
There is an m by n grid with a ball. Given the start coordinate (i,j) of the ball, you can move the ball to adjacent cell or cross the grid boundary i ...
分类:
其他好文 时间:
2019-03-08 22:02:22
阅读次数:
155
python+selenium+Chromedriver使用location定位元素坐标偏差使用xpath定位元素,用.location获取坐标值,截取网页截图的一部分出现偏差。 之所以会出现这个坐标偏差是因为windows系统下电脑设置的显示缩放比例造成的,location获取的坐标是按显示100 ...
分类:
其他好文 时间:
2019-03-08 22:02:04
阅读次数:
421
1.Date对象的常用方法 setFullYear() setMonth() setDate() setHours() setMinutes() setSeconds() 定时函数 setTimeout:等待某段时间后调用某个函数(1次) 语法:setTimeout("调用的函数名称",等待时间) ...
分类:
编程语言 时间:
2019-03-08 22:01:03
阅读次数:
200
Scientific notation is the way that scientists easily handle very large numbers or very small numbers. The notation matches the regular expression [+- ...
分类:
编程语言 时间:
2019-03-08 20:56:58
阅读次数:
167
SQL语句复习【专题四】 多表查询 sql 92多表查询 sql92、sql99 标准--查询所有员工的姓名,部门编号,部门名称select * from empselect * from dept--笛卡尔集select * from emp, dept--消除笛卡尔集中的冗余的数据select ...
分类:
数据库 时间:
2019-03-08 20:56:39
阅读次数:
293
变量以及类型 <1>变量的定义 在程序中,有时我们需要对2个数据进行求和,那么该怎样做呢? 大家类比一下现实生活中,比如去超市买东西,往往咱们需要一个菜篮子,用来进行存储物品,等到所有的物品都购买完成后,在收银台进行结账即可 如果在程序中,需要把2个数据,或者多个数据进行求和的话,那么就需要把这些数 ...
分类:
其他好文 时间:
2019-03-08 20:56:18
阅读次数:
176
asyncio模块:示例一 asyncio模块:示例二 asyncio模块+aiohttp模块:示例三 asyncio模块+requests模块:示例四 gevent模块+requests模块:示例五 grequests模块:示例六 twisted模块:示例七 tornado模块:示例八 twist ...
分类:
编程语言 时间:
2019-03-08 20:55:59
阅读次数:
202
import tkinterwin = tkinter.Tk()win.title("Menu顶层菜单栏")win.geometry("800x600+600+100")#菜单条menubar =tkinter.Menu(win)win.config(menu=menubar)def func(): ...
分类:
编程语言 时间:
2019-03-08 20:55:03
阅读次数:
1245
Docker的三大核心概念:镜像、容器、仓库 镜像:类似虚拟机的镜像、用俗话说就是安装文件。 容器:类似一个轻量级的沙箱,容器是从镜像创建应用运行实例, 可以将其启动、开始、停止、删除、而这些容器都是相互隔离、互不可见的。 仓库:类似代码仓库,是Docker集中存放镜像文件的场所。 简单介绍一下在C ...
分类:
系统相关 时间:
2019-03-08 20:54:28
阅读次数:
199
messageBox 是一个通知的Toast, ...
分类:
移动开发 时间:
2019-03-08 20:53:37
阅读次数:
249
目录 一、绝对布局 二、盒布局 三、格栅布局 四、格栅布局跨行跨列显示 布局管理即设置窗体上各个控件的位置,对于新手来说,这是学习的难点。 布局管理根据绝对坐标是否变动分为绝对布局和相对布局两大类。采用相对布局的窗口在变大或缩小时,各控件的位置关系会保持固定比例做相应变动。而采用绝对布局的窗口变动时 ...
分类:
其他好文 时间:
2019-03-08 20:53:22
阅读次数:
202
本篇博文主要记录Python面向对象中类的特殊方法和特殊成员方法,以及旧类和新类的对比,最后介绍了类中私有成员和方法的概念,Python面向对象结束 ...
分类:
编程语言 时间:
2019-03-08 20:53:07
阅读次数:
217
The Japanese language is notorious for its sentence ending particles. Personal preference of such particles can be considered as a reflection of the s ...
分类:
编程语言 时间:
2019-03-08 20:52:51
阅读次数:
223
Given N rational numbers in the form numerator/denominator, you are supposed to calculate their sum. Input Specification: Each input file contains one ...
分类:
编程语言 时间:
2019-03-08 20:52:35
阅读次数:
152
1 String.prototype.Trim = function() 2 { 3 return this.replace(/(^\s*)|(\s*$)/g, ""); 4 } 5 String.prototype.LTrim = function() 6 { 7 return this.repl... ...
分类:
编程语言 时间:
2019-03-08 20:52:19
阅读次数:
177