下面这个链接有比较全的leetcode题目包括锁的 http://www.cnblogs.com/grandyang/p/4606334.html https://leetcode.com/problems/binary-tree-upside-down/ http://blog.csdn.net/ ...
分类:
其他好文 时间:
2016-10-20 07:19:28
阅读次数:
221
Java TreeMap实现了SortedMap接口,也就是说会按照key的大小顺序对Map中的元素进行排序,key大小的评判可以通过其本身的自然顺序(natural ordering),也可以通过构造时传入的比较器(Comparator)。 TreeMap底层通过红黑树(Red-Black tre ...
分类:
其他好文 时间:
2016-10-15 11:47:12
阅读次数:
163
PLL :Phase Locked Loop 中文:锁相环 ...
分类:
其他好文 时间:
2016-10-12 22:38:55
阅读次数:
102
As we know that some devices come with locked bootloaders like Sony, HUAWEI, hTC...If you try to unlock bootloader, the data would disappear!!! Take h ...
分类:
移动开发 时间:
2016-10-04 22:54:24
阅读次数:
427
由于我在前不久的一次项目调试的时候,将一条数据的ID与另一条数据的ID相同了,但不知为什么没有报错,当在页面发现问题时,删除这条数据时就报错了,oralce record is locked by another user 将锁图标打开也不行,于是找了网上很多解决方式,但说得都不尽详细,最后自己根据 ...
分类:
数据库 时间:
2016-10-03 21:16:27
阅读次数:
233
打开sql plus select session_id from v$locked_object;查询出oracle锁定的会话ID SELECT sid, serial#, username, osuser FROM v$session where sid = 1; 查询出当前会话数的信息 ALT ...
分类:
数据库 时间:
2016-09-26 19:51:11
阅读次数:
2155
1、运行sql: select session_id from v$locked_object; 查出锁表的session,可能很多,正常是没有的 2、SELECT sid, serial#, username, osuser FROM v$session where sid = 162; 将162 ...
分类:
数据库 时间:
2016-09-25 21:51:25
阅读次数:
167
出现这个问题后使用“清理”功能,如果还不行,就直接到上一级目录,再执行“清理”,然后再“更新”。有时候如果看到某个包里面的文件夹没有SVN的标志,直接用“Ctrl+Delete”手工删除,然后“清理”,最后“更新”或“提交”。 网络摘抄1:错误信息Malformed file svn: E:\svn ...
分类:
其他好文 时间:
2016-09-23 16:28:46
阅读次数:
159
#ifndef BST_H_INCLUDED#define BST_H_INCLUDEDtemplate <class T>class treenode{public: treenode():lson(NULL),rson(NULL),freq(1){}; T data; int freq; tre ...
分类:
其他好文 时间:
2016-09-20 22:35:13
阅读次数:
160
B. Appleman and Tree time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output B. Appleman and Tre ...
分类:
移动开发 时间:
2016-09-20 13:35:36
阅读次数:
216