http://acm.xidian.edu.cn/problem.php?id=1084 小数据,直接dfs暴力来做,今天各种细节出错- -! ...
分类:
其他好文 时间:
2016-10-22 07:37:13
阅读次数:
145
zwt2001267 原文 Oracle EM 不能访问 1. cmd控制启动EM: C:\Users\Administrator>emctl start dbconsoleEnvironment variable ORACLE_UNQNAME not defined. Please set ORA ...
分类:
数据库 时间:
2016-10-22 07:36:22
阅读次数:
282
题目: The gray code is a binary numeral system where two successive values differ in only one bit. Given a non-negative integer n representing the total ...
分类:
其他好文 时间:
2016-10-22 00:03:46
阅读次数:
224
1. 脏读 :脏读就是指当一个事务正在访问数据,并且对数据进行了修改,而这种修改还没有提交到数据库中,这时,另外一个事务也访问这个数据,然后使用了这个数据。 2. 不可重复读 :是指在一个事务内,多次读同一数据。在这个事务还没有结束时,另外一个事务也访问该同一数据。那么,在第一个事务中的两 次读数据 ...
分类:
编程语言 时间:
2016-10-22 00:01:19
阅读次数:
191
Description A newspaper is published in Walrusland. Its heading is s1, it consists of lowercase Latin letters. Fangy the little walrus wants to buy se ...
分类:
其他好文 时间:
2016-10-21 23:52:49
阅读次数:
321
蓝牙自动配对,即搜索到其它蓝牙设备之后直接进行配对,不需要弹出配对确认框或者密钥输入框。
经过最近一段时间得研究,针对网上给出的案例。总结了一个亲测好使的Demo。
分类:
移动开发 时间:
2016-10-21 20:20:49
阅读次数:
467
用JS去掉日期输入框的readOnly属性。 代码如下: String js="document.getElementById('dateTimeId').removeAttribute('readOnly');document.getElementById('dateTimeId').setAtt ...
分类:
Web程序 时间:
2016-10-21 20:03:56
阅读次数:
376
安卓系统和ios系统,在做app里面嵌入m版时,有时候会发现,ios上面的那个电池状态栏不占位置,但是安卓的状态栏占位,所以需要区分系统样式单独处理一下! var sUserAgent=navigator.userAgent.toLowerCase(); if(sUserAgent.match(/i ...
分类:
移动开发 时间:
2016-10-21 19:40:22
阅读次数:
241
1.Tag简介 Tag标签,就是一个标签.标签可以起到标识.区分的作用. 同一类的模型,我们可以根据需要给他们设置成统一的标签. 2.给模型添加Tag标签 选中一个模型,在模型的Inspector面板上的顶部位置,设置Tag选项为一 个具体的标签. 如果说引擎提供的标签没有自己想要的标签,可以自己手 ...
分类:
其他好文 时间:
2016-10-21 19:15:25
阅读次数:
168