从小到大排序后 先固定一遍,另外两边递增查找 即固定 i,j=i+1,k=j+1 然后让k递增到 a[i]+a[j]<=a[k] 时 此时不能凑成一个三角形 答案增加 k-1-j 组 此时不需要重置 k=j+1 因为 j++ 后 a[j] 会变大 那么在 j~k 之间的所有木棍长度均能再次满足这种 ...
分类:
其他好文 时间:
2020-01-27 17:10:02
阅读次数:
55
接上一节。 1、mybatis逆向工程相关文件配置 generatorConfig.xml(8条) (1)使用classPathEntry指定Mysql驱动的位置。 (2)去掉生成文件中的注释 (3)数据库连接配置 (4)类型解析 (5)javabean生成的位置、mapper接口的位置、mappe ...
分类:
其他好文 时间:
2020-01-27 17:09:30
阅读次数:
68
查看图片详情,放大图片 使用方法: 1.安装 npm install vue-photo-preview --save 2.引入(全局或局部) import preview from 'vue-photo-preview' import 'vue-photo-preview/dist/vue-pho ...
分类:
其他好文 时间:
2020-01-27 17:09:10
阅读次数:
148
#include<iostream> #include<vector> #include <string> #include <set> using namespace std; struct book{ int ID; string title; string author; vector<str ...
分类:
其他好文 时间:
2020-01-27 17:08:57
阅读次数:
48
>>>"{} {}".format("hello", "world") # 不设置指定位置,按默认顺序 'hello world' >>> "{0} {1}".format("hello", "world") # 设置指定位置 'hello world' >>> "{1} {0} {1}".form ...
分类:
其他好文 时间:
2020-01-27 17:08:12
阅读次数:
59
接上一节。 1、首先建立如下目录 说明: com.gong.curd.bean:用于存放普通javabean。 com.gong.curd.dao:用于存放mapper接口 com.gong.curd.controller:用于存放控制器 com.gong.curd.service:用于存放业务层接 ...
分类:
编程语言 时间:
2020-01-27 17:07:35
阅读次数:
73
用简单的算法,对邮箱地址进行加密,解密: 对应的js: 使用方式: [email?protected] ...
分类:
其他好文 时间:
2020-01-27 17:06:58
阅读次数:
164
接上一节。 1、首先我们在com.gong.curd.controller中新建EmployeeController.java(我们使用分页技术) package com.gong.curd.controller; import java.util.List; import org.springfr ...
分类:
其他好文 时间:
2020-01-27 17:06:29
阅读次数:
63
![](https://img2018.cnblogs.com/blog/1446249/202001/1446249-20200127163755186-143551912.png) ![](https://img2018.cnblogs.com/blog/1446249/202001/14462... ...
分类:
其他好文 时间:
2020-01-27 17:06:12
阅读次数:
50
docker search nextcloud docker pull docker.io/nextcloud docker images mkdir /home/nextcloud chmod -R 777 nextcloud/ docker run -d --restart=always --n ...
分类:
其他好文 时间:
2020-01-27 17:05:29
阅读次数:
123
一道简单的贪心模板题 http://poj.org/problem?id=2393 将每天的价格都放到最低就行了 核心思路:第i天最低的价格 = min(第i-1天最低的价格+s,第i天原本的价格) 有了思路,代码随便打 #include <iostream> #include <algorithm ...
分类:
其他好文 时间:
2020-01-27 17:05:16
阅读次数:
70
interface FastEthernet0 ip address dhcp ip nat outside ip virtual-reassembly ! interface FastEthernet1 no ip address pppoe enable no cdp enable ! inte ...
分类:
移动开发 时间:
2020-01-27 17:04:58
阅读次数:
83
煎鱼大佬的教程 app.ini #debug or release RUN_MODE = debug [app] PAGE_SIZE = 10 JWT_SECRET = 23347$040412 [server] HTTP_PORT = 8000 READ_TIMEOUT = 60 WRITE_TI ...
分类:
其他好文 时间:
2020-01-27 17:04:24
阅读次数:
113
一、属性列表 二、常用属性 三、一些特殊效果 四、定位和控制 绝对定位和相对定位 (position) 绝对定位: 定位属性将是网虫们打开幸福之门的钥匙: H4 { position: absolute; left: 100px; top: 43px } 这项CSS规则让浏览器将的起始位置精确地定在 ...
分类:
其他好文 时间:
2020-01-27 17:04:10
阅读次数:
59
1、鼠标事件 (1)鼠标单击:click <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>鼠标单击事件</title> <script type="text/javascript" src="../js/jquery-1.8.3 ...
分类:
其他好文 时间:
2020-01-27 17:03:41
阅读次数:
97