码迷,mamicode.com
首页 >  
搜索关键字:shared elements tran    ( 12347个结果
js判断所有表单项不为空则提交表单
function myCheck() { for(var i=0;i<document.form1.elements.length-1;i++) { if(document.form1.elements[i].value=="") { ...
分类:Web程序   时间:2014-11-09 16:42:49    阅读次数:142
three Sum
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of ...
分类:其他好文   时间:2014-11-09 16:28:27    阅读次数:203
Leetcode-Recover BST
Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is ...
分类:其他好文   时间:2014-11-09 07:30:45    阅读次数:155
Leetcode-Convert Sorted Array to BST
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.Solution: 1 /** 2 * Definition for binary tree 3 * .....
分类:其他好文   时间:2014-11-09 00:58:31    阅读次数:213
Leetcode-Convert Sorted List to BST.
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.Solution: 1 /** 2 * Definition for singl....
分类:其他好文   时间:2014-11-09 00:52:30    阅读次数:316
c++学习笔记——智能指针
智能指针是为了便于管理动态内存,能够自动管理释放所指向的对象。智能指针共有三种:1、shared_ptr允许多个指针指向同一个对象;2、unique_ptr独占所指向的对象;3、weak_ptr是一个伴随类,它是一种弱引用,指向shared_ptr所管理的对象。这三种类型都定义在memory头文件中...
分类:编程语言   时间:2014-11-08 16:36:26    阅读次数:169
ORA-01591错误的原因和处理方法
http://blog.csdn.net/tclcaojun/article/details/6777022错误代码:ORA-01591错误原因:使用了分布式事务,造成这个问题的原因很多时候都是由于网络问题造成的解决办法:1.找到TRAN_IDSelect 'Rollback force '''||...
分类:其他好文   时间:2014-11-08 14:53:52    阅读次数:223
Oracle设置Shared Pool的大小
在oracle10G或者11G版本中,如何合理设置sharedpool大小,对oracle数据库的性能影响很大。SharedPool的大小设置规则如下:1.查到sharedpool设置的合理值,语句如下:select‘SharedPool‘component,shared_pool_size_for_estimateestd_sp_size,estd_lc_time_saved_factorparse_ti..
分类:数据库   时间:2014-11-08 02:13:47    阅读次数:388
HDU4453--Looploop (Splay伸展树)
LooploopXXX gets a new toy named Looploop. The toy has N elements arranged in a loop, an arrow pointing to one of the elements, and two preset paramet...
分类:其他好文   时间:2014-11-07 14:42:19    阅读次数:290
ANDROID L——Material Design综合应用(Demo)
Demo演示:Android L——Material Desgin特性中的RecyclerView,CardView,Floating Action Button,视图阴影轮廓,Activity transitions,Shared Elements Transition等等的综合应用...
分类:移动开发   时间:2014-11-07 06:20:12    阅读次数:374
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!