Turing Tree
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3904 Accepted Submission(s): 1325
Problem Description
After inventin...
分类:
编程语言 时间:
2015-07-13 14:06:50
阅读次数:
187
这篇文章主要给出一些 Latex 制作斜线表头、合并行单元格与合并列单元格的 demo 演示latex:制作斜线表头\begin{tabular}{|l|ccc|}
\hline
\diagbox{Time}{Room}{Day} & Mon & Tue & Wed \\hline
Morning & used & used & \Afternoon & & used & used \\...
分类:
其他好文 时间:
2015-07-13 14:06:11
阅读次数:
368
在Spring项目中需要加入监控功能,监控过程中发现异常时,需要邮件报警。最初选择用javamail发送,代码量比较大(相对于spring发送),最终选择Spring邮件发送~
下面贴一下实现的代码以及注意事项;
代码结构很简单一个java类和一个xml文件,用到三个jar包,demo下载地址http://download.csdn.net/detail/jeofey/8892859
...
分类:
编程语言 时间:
2015-07-13 14:05:11
阅读次数:
139
CSS3动画遮罩特效,当你把鼠标放在图片上的时候,可看到图片上出现动态效果的文字提示效果,不要以为使用了JavaScript生成了本效果,其实它是用CSS3技术实现的页面动画,虽然没有那么流畅,但用CSS来实现,已经很难得了。...
分类:
Web程序 时间:
2015-07-13 14:06:35
阅读次数:
156
算法描述
可以对给定序列进行查询和修改
查询:主要用来查询任意两位之间数据和
修改:修改单项数据值
时间复杂度:log(n)
算法思想1.数组的构建
定义 数组C A
C1 = A1
C2 = A1 + A2
C3 = A3
C4 = A1 + A2 + A3 + A4
C5 = A5
C6 =...
分类:
编程语言 时间:
2015-07-13 14:07:14
阅读次数:
132
495.Which statement is true regarding the VALIDATE DATABASE command?
A. It checks the database for intrablock corruptions only.
B. It checks for block corruption in the valid backups of the database...
分类:
其他好文 时间:
2015-07-13 14:05:35
阅读次数:
140
此警告解决办法:
项目名字 -> targets -> Build Settings -> search path
把里面没用的东西 点 减号 删掉 就行了。...
分类:
移动开发 时间:
2015-07-13 14:04:24
阅读次数:
267
新项目开发环境搭建遇到的一个问题的排查(cannot assign requested address)...
分类:
其他好文 时间:
2015-07-13 14:04:52
阅读次数:
94
ZYBO Zync-7000 Development Board Work Booting Linux on the ZYBO本文翻译自:http://www.dbrss.org/zybo/tutorial4.html
本文主要是详细讲解zybo硬件系统搭建,u-boot,linux-kernel移植,linaro文件系统移植。Introduction If you are new to lin...
分类:
数据库 时间:
2015-07-13 14:05:03
阅读次数:
546
27 Remove Element链接:https://leetcode.com/problems/remove-element/
问题描述:
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be...
分类:
其他好文 时间:
2015-07-13 14:06:04
阅读次数:
79
No Pain No Game
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 1769 Accepted Submission(s): 748
Problem Description
Life is a g...
分类:
其他好文 时间:
2015-07-13 14:04:53
阅读次数:
107
首先新建一个appdelegate的分类代码如下:#import "AppDelegate.h"
@interface AppDelegate (DismissKeyboard)
/** 开启点击空白处隐藏键盘功能 */
- (void)openTouchOutsideDismissKeyboard;
@end
@implementation AppDelegate (DismissKeyboard...
分类:
其他好文 时间:
2015-07-13 14:06:32
阅读次数:
125
函数重载
必须在同一个类中进行
子类无法重载父类的函数,父类同名函数将被名称覆盖
重载是在编译期间根据参数类型和个数决定函数调用
函数重写
必须发生于父类与子类之间
并且父类与子类中的函数必须有完全相同的原型
使用virtual声明之后能够产生多态(如果不使用virtual,那叫重定义)
多态是在运行期间根据具体对象的类型决定函...
分类:
其他好文 时间:
2015-07-13 14:04:21
阅读次数:
99
Permutations II
Given a collection of numbers that might contain duplicates, return all possible unique permutations.
For example,
[1,1,2] have the following unique permutations:
[1,1,2], [1,...
分类:
其他好文 时间:
2015-07-13 14:06:17
阅读次数:
130
题意:
字符c1和c2的距离为d(c1, c2),已知两个字符串s和t,现在要找长度相等的两个字符串a和b,使得s是a的子序列,t是b的子序列,且a和b的距离最小。
思路:
字串和子序列是不一样的。。。。子序列是允许中间 间断 的,而字串必须是连续的...比赛的时候居然理解错了....T_T
这样的话,用最长公共子序列的思路来解决这道题就好啦~
dp[i][j]表示 “第一个串处理到...
分类:
其他好文 时间:
2015-07-13 14:04:28
阅读次数:
120
Rotate Image
You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
思路:其实就是旋转数组,没有什么难度,代码如下:
public ...
分类:
其他好文 时间:
2015-07-13 14:05:28
阅读次数:
569