这题思路:一开始有n盏灯,且全部为关闭状态,都记为 0 就是 The initial condition : 0 0 0 0 0 …然后之后进行i操作就是对这些灯以是否能被i整除,进行改变状态,如将 0 改为 1 或 将 1 改为 0正如提醒里的After the first operation :...
分类:
其他好文 时间:
2014-07-19 21:00:51
阅读次数:
198
1. We can make it to play trick in code.At Dialog's show function, after app has set contentView, we can add a GlobalLayoutListener on decorView's Vie...
分类:
其他好文 时间:
2014-07-18 16:30:52
阅读次数:
451
In an attempt to remove duplicate elements from list, I go to the lengths to take advantage of methods in the java api. After investiagting the document of java api, the result is so satisfying that...
分类:
编程语言 时间:
2014-07-18 14:02:00
阅读次数:
282
在实际的开发中不仅需要断点调试、语句输出的方法进行程序的调试,也需要单元测试。在java中的junit的测试方法一般是在要测试的方法上面添加@Test、@ Before、@After,@BeforeClass、@AfterClass等,不用写main方法,直接可以运行,而在android中的junit的测试一般是要单独写一个测试的类继承AndroidTestCase,在该类中写要测试的方法,最后直...
分类:
编程语言 时间:
2014-07-18 12:22:55
阅读次数:
316
Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.Fo...
分类:
移动开发 时间:
2014-07-18 11:38:45
阅读次数:
228
1. Input Method: 1.1.用root登录 ,或su root 1.2.yum install "@Chinese Support" 1.3.exit 1.4.回到桌面,system->preferences->input method 1.5.如果没有,先注销一下。 1....
分类:
其他好文 时间:
2014-07-17 21:32:59
阅读次数:
233
很多人的解释都不一样, 我碰到的问题是,开辟的内存空间小于操作的内存空间.也就是说,我free的内存越界了.这是我开辟链表结构体内存的代码: 1 PNODE Create() { 2 int len; //total count of nodes to be created. 3 ...
分类:
移动开发 时间:
2014-07-17 09:57:34
阅读次数:
279
解决方法有三个:1. 使用 float 123 456此时的效果是:123456让这两个元素水平对齐,可以使用float;但是这时候外面元素高度为零。.clearfix:after {visibility: hidden;display: block;font-size: 0;conte...
分类:
其他好文 时间:
2014-07-16 17:07:33
阅读次数:
245
故障原因:从framework4.0到framework4.5的升级过程中,原有的form认证方式发生了变化,所以不再支持User.Identity.Name原有存储模式(基于cookie),要恢复这个功能,我也是偶然间发现的。一下五种解决方案根据具体情况供参考1、降级处理,把你的framework...
分类:
Web程序 时间:
2014-07-16 15:36:42
阅读次数:
284
Validating Receipts Locally
Perform receipt validation immediately after your app is launched, before displaying any user interface or spawning any child processes. Implement this check in the ma...
分类:
其他好文 时间:
2014-07-16 11:48:20
阅读次数:
267