网络上抄袭过来的 然后顺序自己做点笔记 http://chembo.iteye.com/blog/2054021 这里有各个key 详细的描述 # redis 配置文件示例 # 当你需要为某个配置项指定内存大小的时候,必须要带上单位,# 通常的格式就是 1k 5gb 4m 等酱紫:## 1k => ...
分类:
其他好文 时间:
2017-08-31 17:12:22
阅读次数:
302
今天出现编码出现了No suitable driver found for jdbc,又是找遍了网上的资料,基本上都说是三个问题: 一是:连接URL格式出现了问题(Connection conn=DriverManager.getConnection("jdbc:mysql://localhost: ...
分类:
数据库 时间:
2017-08-25 01:20:16
阅读次数:
270
今天在用C3p0连接MySql数据库 这个时候出现了上面的错误, 一般来说这种错误有3个方向解决 一般都是db的配置的问题 ,一定要小心DB 的配置 八月 19, 2017 8:30:46 下午 com.mchange.v2.resourcepool.BasicResourcePool$Acquir ...
分类:
数据库 时间:
2017-08-19 22:14:47
阅读次数:
806
Given two positive integers a and b,find suitable X and Y to meet the conditions: X+Y=a Least Common Multiple (X, Y) =b Input Input includes multiple ...
分类:
其他好文 时间:
2017-08-17 21:31:47
阅读次数:
322
题目链接:http://codeforces.com/problemset/problem/825/D 题意:给两个字符串s t,s中有一些问号。现在问号可以替换为任意字符,s字符串可以任意换位置,希望让t在s中出现次数最多。 统计s中各个字符出现次数,一直扫t,用s中与t相同字符抵消,不能抵消就用 ...
分类:
其他好文 时间:
2017-08-12 13:57:23
阅读次数:
166
You are given two strings s and t consisting of small Latin letters, string s can also contain '?' characters. Suitability of string s is calculated b ...
分类:
其他好文 时间:
2017-08-06 19:42:20
阅读次数:
397
一、在查看结果书中提示 no suitable driver found for jdbc 是因为没有安装mysql驱动jar包。需要下载mysql-connector-java-5.1.17,并将驱动jar包放置在jmeter安装目录的lib中即可 ...
分类:
数据库 时间:
2017-08-03 11:13:39
阅读次数:
139
1、提示:No suitable driver found for jdbc 运行时报以下错误: 解决方案: 导入mysql-connector-java-5.1.42-bin.jar ...
分类:
编程语言 时间:
2017-07-26 12:30:02
阅读次数:
130
Problem Description There is a youngster known for amateur propositions concerning several mathematical hard problems.Nowadays, he is preparing a thou ...
分类:
其他好文 时间:
2017-07-26 10:47:01
阅读次数:
149
题目大意:给你字符串s,和t,字符串s中的'?'可以用字符串t中的字符代替,要求使得最后得到的字符串s(可以将s中的字符位置两两交换,任意位置任意次数)中含有的子串t最多。 解题思路: 因为知道s中的字符位置可以交换无数次,所以只要s中含有可以组成t的字符就一定可以出现子串t。所以就是要令t中的字符 ...
分类:
其他好文 时间:
2017-07-17 23:50:03
阅读次数:
210