/********************************************************************************* @author Maoxiao Hu* @version V1.0.0* @date Jan-2015****************...
分类:
系统相关 时间:
2015-01-06 19:40:47
阅读次数:
193
【问题现象】pdns_server启动失败 【问题日志】 Jan 6 09:40:16 localhost pdns[24942]: This is a standalone pdns Jan 6 09:40:16 localhost pdns[24942]: Listening on controlsocket in ‘/var/vcap/sys/run/p...
分类:
其他好文 时间:
2015-01-06 12:15:02
阅读次数:
250
登录数据库,提示:
ora11g>sqlplus dcsopen/dcsopen1
SQL*Plus: Release 11.2.0.1.0 Production on Mon Jan 5 18:49:31 2015
Copyright (c) 1982, 2009, Oracle. All rights reserved.
ERROR:
ORA-01034: ORACLE not...
分类:
其他好文 时间:
2015-01-05 22:02:41
阅读次数:
184
C++ 代码静态分析工具cppcheck Author:Echo Chen(陈斌) Email:chenb19870707@gmail.com Blog:Blog.csdn.net/chen19870707 Date:Jan.1st , 2015 进来游戏进入尾期,已上线运营,需求比较少,可以有时间整理优化下代码,但是优化如果没有一个标准,很难有...
分类:
编程语言 时间:
2015-01-04 17:17:28
阅读次数:
250
其实很简单.新手创作,不好勿喷.jsp页面: 1 28 29 30 json 代码格式.我这不用分页 也就没有total{"headers":[ {"一月份":"Jan","二月份":"Feb"}],"bodys":[ {"name":"LNG","count":"50000","Jan...
分类:
其他好文 时间:
2015-01-04 16:54:52
阅读次数:
182
原文:http://www.oracle.com/technetwork/issue-archive/2013/13-jan/o13asktom-1886639.html
I am using SQL Loader to load data into tables from a flat file. Some sample data in the file might be:
我打算使...
分类:
数据库 时间:
2015-01-03 14:44:44
阅读次数:
272
原文:http://www.oracle.com/technetwork/issue-archive/2013/13-jan/o13asktom-1886639.html
I have a question about joining with collections and cardinality estimation. The optimizer is always estimati...
分类:
其他好文 时间:
2015-01-03 13:12:37
阅读次数:
149
没测样例一遍A这真是……
题意:每个点都有且仅有一个出边(可以出现自环),然后这样一个点出发就会走过且一定走过某些点。
问每个点出发都会走过几个点。
首先这是基环树无疑。
然后就是裸DP了。
这个的关键就是找环,仅此。
#include
#include
#include
#include
#define N 101000
using namespace...
分类:
其他好文 时间:
2015-01-03 09:24:21
阅读次数:
138
题意:可以理解为给你一个图,让你建一个树,然后从某根开始走,每走一条边就要消耗两边点权+边的边权。最后再加上一个根的点权,问最少花多少代价。
题解:改变边权然后做最小生成树。
#include
#include
#include
#include
#include
#define N 101000
#define inf 0x3f3f3f3f
using namespace std;...
分类:
其他好文 时间:
2015-01-02 14:44:44
阅读次数:
158