题目描述 给定一个长度为N的数列A,以及M条指令 (N≤5*10^5, M<=10^5),每条指令可能是以下两种之一:“C l r d”,表示把 A[l],A[l+1],…,A[r] 都加上 d。“Q l r”,表示询问 A[l],A[l+1],…,A[r] 的最大公约数(GCD)。 输入 第一行两 ...
分类:
其他好文 时间:
2018-10-01 11:53:58
阅读次数:
170
前端调试过程中,由于调试js时常常因为浏览器会自动存缓存,妨碍调试js代码,使用需要关闭浏览器的缓存功能 1、谷歌浏览器中调出开发者模式, 2、选择Network 3、将disable cache勾选上 ...
分类:
其他好文 时间:
2018-10-01 11:53:52
阅读次数:
132
什么是 stack ?例如:首先创建 secret。 然后创建 MySQL service,这是 WordPress 依赖的服务。 最后创建 WordPress service。 也就是说,这个应用包含了两个 service:MySQL 和 WordPress,它们之间有明确的依赖关系,必须先启动 ...
分类:
其他好文 时间:
2018-10-01 11:53:44
阅读次数:
170
装载一篇MySQL Windows64位下载安装教程,原为地址:https://www.jb51.net/article/89224.htm,内容如下: MySQL是目前十分流行的一种关系型数据库管理系统。官网推出的安装包有两种格式,分别是:ZIP格式和MSI格式。其中MSI格式的可以直接点击安装, ...
分类:
数据库 时间:
2018-10-01 11:53:30
阅读次数:
184
There is a robot starting at position (0, 0), the origin, on a 2D plane. Given a sequence of its moves, judge if this robot ends up at (0, 0) after it ...
分类:
其他好文 时间:
2018-10-01 11:53:24
阅读次数:
207
filebeat.yml ###################### Filebeat Configuration Example ######################### # This file is an example configuration file highlighting ...
分类:
其他好文 时间:
2018-10-01 11:53:17
阅读次数:
245
问题:如提示,前两天Centos7.5虚拟机关机,第二天重启后使用Xshell发现无法连接虚拟机,经检测发现虚拟机无法ping通192.168.1.1、无法ping通192.168.1.118(客户机)和www.baidu.com 解决办法: 这两天通过测试发现systemctl restart n ...
分类:
其他好文 时间:
2018-10-01 11:53:11
阅读次数:
199
题目 Given two binary strings, return their sum (also a binary string). The input strings are both non empty and contains only characters 1 or 0. Exampl ...
分类:
其他好文 时间:
2018-10-01 11:52:46
阅读次数:
104
中文名称:控制反转 英文名称:( Inversion of Control ) 1 控制反转作用: 一般在编写java程序时,需要程序员自己创建对象的实例,例如 A a=new A();语句,就是程序员自己通过new 语句创建要使用的类实例,控制反转就是把创建对象实例的过程交给了spring,程序员 ...
分类:
编程语言 时间:
2018-10-01 11:52:40
阅读次数:
132
kibana.yml # Kibana is served by a back end server. This setting specifies the port to use.#端口server.port: 5601 # Specifies the address to which the K ...
分类:
其他好文 时间:
2018-10-01 11:52:33
阅读次数:
232
保存详情如下: error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/ 方法 ...
分类:
编程语言 时间:
2018-10-01 11:52:27
阅读次数:
274
总结 1、结构化程序设计 按功能来分析系统需求:自顶向下,逐步求精,模块化等 结构化分析(Structured Analysis)->结构化设计(SD)->结构化编程(SP) 面向功能,面向数据流,最小单元是函数 三种基本结构:顺序结构(顺序执行所有操作,直到出口),选择结构(按条件选择分支执行), ...
分类:
编程语言 时间:
2018-10-01 11:52:19
阅读次数:
179
private static string base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; private static int[] base64DecodeChars =... ...
Given a binary matrix A, we want to flip the image horizontally, then invert it, and return the resulting image. To flip an image horizontally means t ...
分类:
其他好文 时间:
2018-10-01 11:52:01
阅读次数:
141
Flask Script扩展提供向Flask插入外部脚本的功能,包括运行一个开发用的服务器,一个定制的Python shell,设置数据库的脚本,cronjobs,及其他运行在web应用之外的命令行任务;使得脚本和系统分开; Flask Script和Flask本身的工作方式类似,只需定义和添加从命 ...
分类:
其他好文 时间:
2018-10-01 11:51:47
阅读次数:
135
一、简单工厂模式 1、内容 2、角色 3、优点 4、缺点 二、工厂方法模式 1、内容 不直接向客户端暴露对象创建的实现细节,而是通过一个工厂类来负责创建产品类的实例 2、角色 1、工厂角色(Factory) 2、抽象产品角色(Product) 3、具体产品角色(Concrete Product) 3 ...
分类:
其他好文 时间:
2018-10-01 11:51:38
阅读次数:
132