题目链接 //Serene #include<algorithm> #include<iostream> #include<cstring> #include<cstdlib> #include<cstdio> #include<cmath> #include "gap.h" using names ...
安装MongoDB之前,首先要下载MongoDB软件安装包, MongoDB社区版官网下载地址:https://www.mongodb.com/download-center?jmp=nav#community 下载后,双击msi安装文件进行安装,点击"Next">> 勾选同意相关协议规定,点击"N ...
分类:
数据库 时间:
2018-04-30 14:37:42
阅读次数:
198
前 言 最近做了个关于各种图表的项目,用到了echarts , 关于各个配置项刚开始用好多都不懂,有些地方需要改不知道改哪个参数,就在网上查了各种,总结规整了一下,跟大家分享学习一下。(echarts官网也有配置项说明文档。) 以上就是echarts的几个原型图,但是在实际开发当中,我们需要的图表与 ...
分类:
其他好文 时间:
2018-04-27 18:07:55
阅读次数:
374
DataGuard的关启状态 启用备库: SQL>STARTUP NOMOUNT; SQL>alter database mount standby database; SQL>alter database recover managed standby database disconnect fr ...
分类:
数据库 时间:
2018-04-24 11:48:05
阅读次数:
237
1.maven配置 2.简单运行 3.配置访问 配置文件application.properties指定访问端口和路径 ****** 3.连接数据库属性文件配置 ...
分类:
编程语言 时间:
2018-04-21 12:11:24
阅读次数:
224
Description Solution 第一个子任务,直接从 $(a[i],a[j])$ 推出 $(a[i+1],a[j 1])$ 就行了,只需要 $\frac{N+1}{2}$ 第二个子任务,首先答案至少是 $\lceil\frac{max min}{N 1}\rceil$ 然后我们就只关心长度 ...
SpringBoot(主流)SpringBoot简介核心点:1、敏捷开发,轻量级框架 , 弊端:封装太完美,不方便扩展 (但是高版本中的springboot是可以自定义的)2、无需tomcat (java应用程序运行,通过运行jar包)3、减少xml配置(几乎没有xml),配置properties文 ...
分类:
编程语言 时间:
2018-04-20 16:06:19
阅读次数:
305
代码如下,三种方法: import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.CommandLineRunner;import org.springframework. ...
分类:
其他好文 时间:
2018-04-19 18:48:22
阅读次数:
1556
void ShellSort(int a[],int left,int right); //对a[left]到a[right]从小到大排序 void ShellSort(int a[],int left,int right) { int len = right - left +1; int gap,... ...
分类:
编程语言 时间:
2018-04-17 22:25:23
阅读次数:
218
启动Springboot项目报以下异常: 很明显是提示Application无法获取ServletWebServerFactory实例,首先要注意, 由于Springboot在以往使用Spring都要配置下提供了集成方案,所以最简单的方法就是采用默认的配置,解决方法非常简单,只需在你的启动类中加入@ ...
分类:
编程语言 时间:
2018-04-16 14:38:23
阅读次数:
19270