坦克大战时间限制:1000ms | 内存限制:65535KB难度:3描述Many of us
had played the game "Battle city" in our childhood, and some people (like me)
even often play it on com...
分类:
其他好文 时间:
2014-06-13 08:24:42
阅读次数:
221
方法1.go to the Product menu and find the Edit
Scheme menu there.While in Edit Scheme window, select the "Run" option on the
left hand side of the scree...
分类:
其他好文 时间:
2014-06-12 21:03:42
阅读次数:
317
精简了一下CentOS的开机自启服务,结果重启之后出现提示StartingHALdaemon:[FAILED]然后启动到crond的时候halt了……按理说这个守护进程不是致命的,FAILED也是应该能启动起来系统的,它只是担负U盘以及其他USB硬件识别功能。但是问题是如果需要启动到图形界面,鼠标键盘识别失..
分类:
其他好文 时间:
2014-06-10 23:35:36
阅读次数:
1055
80X86上的函数/过程调用.call指令来调用过程;ret指令(return)返回调用程序.过程如下:1)确定执行完过程后要返回的指令地址(返回/链接地址).2)将该地址保存到已知位置.在没有递归时,可将其放在任意位置.放到内存中的栈是最常见的,执行过程:call->push/ret->pop优点...
分类:
其他好文 时间:
2014-06-10 19:47:08
阅读次数:
272
今天在做项目时,遇到了一个问题。因为是在别人做好的基础上改东西,所以,一些东西不能按照自己的变成习惯来。就比如,我创建项目习惯刚建完就设置字符的编码集为UTF-8,而人家的项目就未必是那样了。好了,废话不多了。问题如下:一个jsp页面(里面有Java代码)的编码集为GB2312,而我修改里面东西时死活不让我保存,一保存就提示“Some characters cannot be mapped usi...
分类:
移动开发 时间:
2014-06-10 19:26:26
阅读次数:
538
题目
Follow up for "Unique Paths":
Now consider if some obstacles are added to the grids. How many unique paths would there be?
An obstacle and empty space is marked as 1 and 0 respective...
分类:
其他好文 时间:
2014-06-10 18:28:49
阅读次数:
207
题目
Validate if a given string is numeric.
Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true
Note: It is intended for the problem statement t...
分类:
其他好文 时间:
2014-06-10 17:32:23
阅读次数:
174
iOS开发UI篇—Modal简单介绍一、简单介绍除了push之外,还有另外一种控制器的切换方式,那就是Modal任何控制器都能通过Modal的形式展?出来Modal的默认效果:新控制器从屏幕的最底部往上钻,直到盖住之前的控制器为?二、代码说明新建一个项目,在Application的代理中添加wind...
分类:
移动开发 时间:
2014-06-10 12:55:50
阅读次数:
294
除了push之外,还有另外一种控制器的切换方式,那就是Modal
Modal的默认效果:新控制器从屏幕的最底部往上钻,直到盖住之前的控制器为止以Modal的形式展示控制器-
(void)presentViewController:(UIViewController *)viewControll...
分类:
移动开发 时间:
2014-06-10 12:08:17
阅读次数:
264
1、版本新特性: 控制器的跳转不能使用push 和modal, push:
采用的时栈的方式,无法销毁之前的控制器 modal:无法销毁之前的控制器 应该使用rootViewController2、实现过程:
①设置滚动视图,一般是整个界面- (void)setupScrollView{ ...
分类:
其他好文 时间:
2014-06-10 11:34:52
阅读次数:
178