码迷,mamicode.com
首页 >  
搜索关键字:hint    ( 1715个结果
合并两个有序链表
题目描述: 输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。 (hint: 请务必使用链表。) 输入: 输入可能包含多个测试样例,输入以EOF结束。 对于每个测试案例,输入的第一行为两个整数n和m(0 下面一行包括n个数t(1 输出: 对应每个测试案例, 若有结果,输出相应的链表。否则,输出N...
分类:其他好文   时间:2014-07-18 23:10:26    阅读次数:406
SQL逻辑读变成零
使用缓存HINT 让逻辑读变成0.create table t as select * from dba_objects;insert into t select * from t;commit;set autotrace onset timing onset linesize 1000select...
分类:数据库   时间:2014-07-13 22:54:22    阅读次数:352
自作聪明的开发
近日查看数据库运行较长的语句,发现我们这边的开发人员真是厉害,不懂装懂的本领真高。 开发以为只要走索引就是快的,而且刚好知道index hint可以强制走索引,所以就用上了。可是走的是bitmap index full scan,把整个索引都扫描了,然后根据索引的位图转化(bitmap conversion to rowids)成rowid,再根据索引的rowid和表的row...
分类:其他好文   时间:2014-07-12 23:01:24    阅读次数:333
LeetCode——String to Integer (atoi)
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input ca...
分类:其他好文   时间:2014-07-08 12:52:05    阅读次数:200
android editText 软键盘enter键图标的设置
<EditText android:layout_marginTop="10dp" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="输入单位" android:layout_marginLef...
分类:移动开发   时间:2014-07-06 12:06:32    阅读次数:296
mysql常用的hint
--mysql常用的hint-------------------2014/06/26对于经常使用oracle的朋友可能知道,oracle的hint功能种类很多,对于优化sql语句提供了很多方法。同样,在mysql里,也有类似的hint功能。下面介绍一些常用的。强制索引FORCEINDEXSELEC...
分类:数据库   时间:2014-06-27 12:24:01    阅读次数:227
[BZOJ 1087][SCOI2005]互不侵犯King
Description 在N×N的棋盘里面放K个国王,使他们互不攻击,共有多少种摆放方案。国王能攻击到它上下左右,以及左上左下右上右下八个方向上附近的各一个格子,共8个格子。 Input 只有一行,包含两个数N,K ( 1 Output 方案数。 Sample Input 3 2 Sample Output 16 HINT Sou...
分类:其他好文   时间:2014-06-26 14:33:46    阅读次数:148
[BZOJ 1007][HNOI2008]水平可见直线
Description Input 第一行为N(0 Output 从小到大输出可见直线的编号,两两中间用空格隔开,最后一个数字后面也必须有个空格 Sample Input 3 -1 0 1 0 0 0 Sample Output 1 2 HINT Source 这个题其实和计算几何没太大关系,需要用单调栈维护可以被看见的直线...
分类:其他好文   时间:2014-06-24 23:22:16    阅读次数:279
String to Integer (atoi)
题目 Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possibl...
分类:其他好文   时间:2014-06-24 23:14:28    阅读次数:238
使用hint优化Oracle的执行计划
背景: 某表忽然出现查询非常缓慢的情况,cost 100+ 秒以上;严重影响生产。 原SQL: explain plan for select * from ( select ID id,RET_NO retNo, FROM_SYS fromSy, TO_SYS toSys, COMMAND_CODE commandCode, COMMAND, STATUS, EXT_CODE,...
分类:数据库   时间:2014-06-22 14:32:23    阅读次数:277
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!