You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2018-09-22 10:32:40
阅读次数:
133
ZROI 普及组模拟赛02总结 先放[网址][http://zhengruioi.com/contest/96] 可能是有一段时间没有打这种正式的比赛了,今天打的很奇怪。。。 T1 模拟水题 既然是普及组模拟赛T1还是比较良心的 20分钟就过掉了 T2 《论不仔细观察题目导致的惨案》 没有发现莫尔斯 ...
分类:
其他好文 时间:
2018-09-22 10:32:33
阅读次数:
270
在N件物品取出若干件放在容量为W的背包里,每件物品的体积为W1,W2……Wn(Wi为整数),与之相对应的价值为P1,P2……Pn(Pi为整数)。求背包能够容纳的最大价值。 在N件物品取出若干件放在容量为W的背包里,每件物品的体积为W1,W2……Wn(Wi为整数),与之相对应的价值为P1,P2……Pn ...
分类:
其他好文 时间:
2018-09-22 10:32:22
阅读次数:
146
因为边权为1所以a直接bfs瞎搞就行……我一开始竟然写了个spfa cpp include include include include using namespace std; const int N=1005,inf=1e9; int n,m,st,ed,h[N],cnt,a[N][N],b[ ...
分类:
其他好文 时间:
2018-09-22 01:08:25
阅读次数:
129
# 文件处理 # 打开文件 #open('路径','打开方式','指定编码方式') # 打开方式 r w a r+ w+ a+ b #r+ 打开文件直接写 和读完再写 # 编码方式 —— utf-8 # 操作文件 # 读 # read 一次性读 ... ...
分类:
其他好文 时间:
2018-09-22 01:08:16
阅读次数:
140
阻焊层:solder mask,是指板子上要上绿油的部分;因为它是负片输出,所以实际上有solder mask的部分实际效果并不上绿油,而是镀锡,呈银白色! 助焊层:paste mask,是机器贴片时要用的,是对应所有贴片元件的焊盘的,大小与toplayer/bottomlayer层一样,是用来开钢 ...
分类:
其他好文 时间:
2018-09-22 01:08:08
阅读次数:
128
文档 https://router.vuejs.org/zh-cn npm install vue-router --save 调用 import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) 流程 a. v ...
分类:
其他好文 时间:
2018-09-22 01:07:38
阅读次数:
135
今天遇到一个客户需要我将页面的图标做成字体图标,想想哎可能整的麻烦,不过想想这也是对项目的一个优化 ( 1.字体图标直接用color自由控制颜色;2.整合在一起,减少http请求等 PS:平时了解这些,就是麻烦不想整。。。)。客户还是比较贴心给我整理了一份整套网站的svg格式的图标;可是怎么快速将s ...
分类:
其他好文 时间:
2018-09-22 01:07:29
阅读次数:
349
/** * 输入整数n * 输入整数个字符串 * 求每个字符串的的最长公共子字符串(从下标0开始)且不是其它字符串的前缀 * * 例: * 输入: * 5 * bcd * abcd * abce * hgfs * hgab * * 输出: * b * abc * abc * hg * hg */ i... ...
分类:
编程语言 时间:
2018-09-22 01:07:11
阅读次数:
184
Volodya is an odd boy and his taste is strange as well. It seems to him that a positive integer number is beautiful if and only if it is divisible by ...
分类:
其他好文 时间:
2018-09-22 01:07:03
阅读次数:
230
今天写这篇博客,主要是回答网友的问题,也是我们项目中最经常使用的数据库操作。 UIPath是可以读取MySQL中的内容,更可以将Excel,CSV,txt等文件中的信息,写入MySQL中,这部分后续会写博客。 在准备实现此功能前,必须要做好三个前置条件,我们首先得有个MySQL数据库才行,接着就是M ...
分类:
数据库 时间:
2018-09-22 01:06:57
阅读次数:
2055
.wrapper { display: grid;/*定义一个块级的网格容器*/ grid-template-columns: repeat(3, 1fr); /*表示平均分为3列*/ grid-gap: 10px;/*网格间距*/ grid-auto-rows: minmax(100px, aut ...
分类:
其他好文 时间:
2018-09-22 01:06:51
阅读次数:
171
;; connection timed out; trying next origin ;; connection timed out; no servers could be reached ...
分类:
其他好文 时间:
2018-09-22 01:06:43
阅读次数:
5280
activeMq简单实例: package com.gordon; import org.apache.activemq.ActiveMQConnectionFactory; import javax.jms.*; /** * 生产者 * Created by gordon on 2018/9/8. ...
分类:
其他好文 时间:
2018-09-22 01:06:27
阅读次数:
196
代码鲁棒性较差,之后补充注释以及减少BUG增加可读性。 ...
分类:
其他好文 时间:
2018-09-22 01:06:17
阅读次数:
188
1.数据库授权 为用户授权 授权格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码"; 1.1 登录MYSQL(有ROOT权限),这里以ROOT身份登录: @>mysql -u root -p @>密码 1.2 首先为用户创建一个数据库(testDB ...
分类:
其他好文 时间:
2018-09-22 01:06:03
阅读次数:
303