最近有一位妹子来问我,怎样提升工作效率?我想了下,这是一个系统工程,所以打算开写一个提升工作效率的系列文章。这一篇可算做第一篇,后续会连载若干篇。至于最终能写出来多少篇,我暂时也不清楚,然必竭尽所能,不辜负妹子的期望。
分类:
其他好文 时间:
2015-08-07 22:07:13
阅读次数:
91
Java应用的底层代码都是通过 JDBC 接口访问数据库的,每种数据库针对这个标准接口都有着与其自身相适配的 JDBC 驱动程序。MySQL数据库的 JDBC驱动程序包可上网下载获得,将它保存在一个特定的目录下。 在使用这个驱动之前,要先建立与数据源的连接: 启动 myeclipse ,选择...
分类:
数据库 时间:
2015-08-07 22:07:03
阅读次数:
182
数组函数:array_change_key_case— 返回字符串键名全为小写或大写的数组array_chunk— 将一个数组分割成多个array_column— 返回数组中指定的一列array_combine— 创建一个数组,用一个数组的值作为其键名,另一个数组的值作为其值array_count_...
分类:
Web程序 时间:
2015-08-07 22:07:09
阅读次数:
215
原题:Descriptionbobo has a sequence a1,a2,…,an. He is allowed to swap twoadjacentnumbers for no more than k times.Find the minimum number of inversions ...
分类:
其他好文 时间:
2015-08-07 22:05:30
阅读次数:
88
1030: [JSOI2007]文本生成器Time Limit:1 SecMemory Limit:162 MBSubmit:2609Solved:1074[Submit][Status][Discuss]DescriptionJSOI交给队员ZYX一个任务,编制一个称之为“文本生成器”的电脑软件:...
分类:
Web程序 时间:
2015-08-07 22:05:30
阅读次数:
152
Table of Contents 将报表的类型改为HTML 打印HTML格式报表 使用html editor 修改报表模板 使用Web builder修改报表 恢复报表格式 将报表的类型改为HTML Settings > technical > actions > reports 查找需要修改的报...
分类:
Web程序 时间:
2015-08-07 22:05:59
阅读次数:
161
头:header 内容:content/container 尾:footer 导航:nav 侧栏:sidebar栏目:column 页面外围控制整体布局宽度:wrapper 左右中:left right center 登录条:loginbar 标志:logo 广告:banner ...
分类:
Web程序 时间:
2015-08-07 22:04:59
阅读次数:
189
1.union就是将两个或多个SQL语句的结果合并成一个结果集。(注意:合并时各个语句取出的列数必须相同,同时列名称以第一个SQL语句的列名称为准) 例子: select id,name from a union select id,name from b; 2.union...
分类:
数据库 时间:
2015-08-07 22:06:38
阅读次数:
157
本文来自:http://blog.sina.com.cn/s/blog_6125d067010168dt.html工作中用到了ffmpeg x64。 发现编译出来x64的ffmpeg,很不容易。特记录下来。原计划编译 静态库, 发现静态库,在vs2010调用过程中,总是出现莫名其妙的错误。 后来发现...
分类:
其他好文 时间:
2015-08-07 22:07:34
阅读次数:
140
配置 启用多币种特性,并设置本位币 Gain exchange rate account 汇损收益科目,一般为财务费用下的二级科目 Loss exchange rate account 汇损损失科目, 启用price List特性 销售,启用price list特性 更新汇率 设置外币银行账户 Ba...
分类:
其他好文 时间:
2015-08-07 22:05:09
阅读次数:
318
D3D Project 矩阵推导 D3D中, 从模型\场景到显示在屏幕上, 一般会涉及到 3 个坐标系, 4 个矩阵. 其中: 模型坐标系(Local Matrix), 世界坐标系(World Matrix), 相机坐标系(View Matrix), 这几个坐标系与矩阵相对应. 最后要把三维的模型显...
分类:
其他好文 时间:
2015-08-07 22:04:55
阅读次数:
381
题意:给定一个序列,然后将此序列按升序排列,每次操作只能交换相邻的两个数,求达到目标所需的最小交换次数;(ps:此题需用 long long ,否则会wa)当然这其实就是求逆序对数;归并(Merge)排序法是将两个(或两个以上)有序表合并成一个新的有序表,即把待排序序列分为若干个子序列,每个子序列是...
分类:
编程语言 时间:
2015-08-07 22:05:23
阅读次数:
205
DescriptionIn this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping ...
分类:
其他好文 时间:
2015-08-07 22:03:44
阅读次数:
107
题意: bobo has a sequence a1,a2,…,an. He is allowed to swap twoadjacentnumbers for no more than k times.Find the minimum number of inversions after his ...
分类:
编程语言 时间:
2015-08-07 22:04:12
阅读次数:
138
#include#include#include#include#includeusing namespace std;int main(){ map>> childrenMap; string fmname,childname,childBithday; do{ c...
分类:
编程语言 时间:
2015-08-07 22:04:40
阅读次数:
124
原题:DescriptionBefore the invention of book-printing, it was very hard to make a copy of a book. All the contents had to be re-written by hand by so ca...
分类:
其他好文 时间:
2015-08-07 22:05:30
阅读次数:
123
题意: 求长度大于等于K的公共子串的个数。位置不同就算不同。后缀数组求依次SA LCP, 然后就是统计答案了, 暴力统计n^2复杂度显然不可以, 我们可以利用lcp数组的"部分单调性", 用一个栈,栈中保存小于等于当前lcp的原数组的下标,两次统计, 第一次统计, 按B串统计, 把A串大于等于K的那...
分类:
编程语言 时间:
2015-08-07 22:03:51
阅读次数:
125