题目链接题意:求出在a到b之间的数中,有多少个0。思路:组合数学问题。能够枚举每一个位置上的数i,如果i之前的数为left,后面的为right,后面有num位数。当i != 0时,将i置为0,所以组合数为left * 10^num(后面的位数,每一位有10种选择),当i = 0时,当前面取[1, l...
分类:
其他好文 时间:
2014-09-30 14:45:19
阅读次数:
108
错误描述:
测试一段时间没有任何问题,今天突然用户无法登录,报错如Data source rejected establishment of connection, message from server: "Too many connections"
错误原因:
太多的连接数,登录用户过多,配置的mysql连接数过小,或者某些连接没有关闭,导致连接数过大。...
分类:
其他好文 时间:
2014-09-30 10:02:02
阅读次数:
234
How Many Paths Are ThereTime Limit: 1000msMemory Limit: 32768KBThis problem will be judged onHDU. Original ID:319164-bit integer IO format:%I64d Java ...
分类:
其他好文 时间:
2014-09-30 02:49:21
阅读次数:
318
一. 官网说明 在MOS 上的一篇文章讲到了rebuild online 和offline的区别: ?????? Index Rebuild Is Hanging Or Taking Too Long [ID 272762.1] ? Symptoms: ========= ?????? Performance ?issue...
分类:
数据库 时间:
2014-09-29 21:00:31
阅读次数:
375
插空法 大组合数取余
#include
#include
using namespace std;
typedef long long LL;
//求整数x和y,使得ax+by=d, 且|x|+|y|最小。其中d=gcd(a,b)
void gcd(LL a, LL b, LL& d, LL& x, LL& y)
{
if(!b)
{
d = a;
x = 1;
y = ...
分类:
其他好文 时间:
2014-09-29 19:37:31
阅读次数:
218
Given n, how many structurally unique BST's (binary search trees) that store values 1...n?
For example,
Given n = 3, there are a total of 5 unique BST's.
去网上搜n个二叉搜索树的递推公式或者Catalan数,可以由h(n)=C(2n,n)/(n+1)得到h(n)=[2n*(2n-1)*...(n+2)]/[n!]....
分类:
其他好文 时间:
2014-09-29 17:57:01
阅读次数:
171
发现:ERROR: The partition with /var/lib/mysql is too full! failed!然后df -h 发现硬盘100% 于是分析到底什么占用了这近两百G的硬盘,结果发现是数据库的备份文件日积月累,占满了这近两百G的硬盘。然后cd /varrm -rf log...
分类:
数据库 时间:
2014-09-29 02:32:36
阅读次数:
302
题目:
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
很简单的思路,因为一次可以走1~2步,所以...
分类:
其他好文 时间:
2014-09-29 00:34:46
阅读次数:
272
Givenn, how many structurally uniqueBST's(binary search trees) that store values 1...n?For example,Givenn= 3, there are a total of 5 unique BST's. 1.....
分类:
编程语言 时间:
2014-09-27 15:24:59
阅读次数:
159
Python的分支语句比较简单,只有if、else、elif三个关键字,也就是说,Python没有switch语句,而且,Python中并没有?:这个三目运算符。例子:1 age = 182 if age < 18:3 print('too young')4 elif age == 18:5...
分类:
编程语言 时间:
2014-09-27 03:53:39
阅读次数:
183