Number of 1 between 1 to N.
分类:
其他好文 时间:
2014-05-22 01:00:08
阅读次数:
230
比较运算符> = = 大于、小于、大于(小于)等于、不等于BETWEEN
...AND...显示在某一区间的值IN(set)显示在in列表中的值,例:in(100,200)LIKE ‘张pattern’模糊查询 _ %IS
NULL判断是否为空逻辑运算符and &&多个条件同时成立or ||多...
分类:
其他好文 时间:
2014-05-22 00:51:48
阅读次数:
658
Find continuous sequences between 1 to N whose sum
equals to S.
分类:
其他好文 时间:
2014-05-21 23:59:57
阅读次数:
394
1.Scatter/Gather I/Oa single system call to
read or write data between single data stream and multiple buffersThis type of
I/O is so named because the...
分类:
系统相关 时间:
2014-05-17 14:17:55
阅读次数:
571
Beforewetalkaboutthedifferencesbetweenthesenetworkdevices,wehavetounderstandtheconflictdomainandbrocastdomainfirst.Takebusnetworktopologyforexample,allthePCsareconnectingtothesamebusline.IfmultiplePCsaresendingthesignalatthesametime,itwillcreateaconflictdom..
分类:
Web程序 时间:
2014-05-15 18:48:26
阅读次数:
381
介绍ViewFlipper
ViewFlipper
Simple ViewAnimator that will animate between two or more views that have been added to it. Only one child is shown at a time. If requested, can automatically flip betwee...
分类:
其他好文 时间:
2014-05-15 18:37:44
阅读次数:
356
Difference Between Mod_Python & Mod_Wsgi |
eHow x YES NO Why not? Thanks for helping us to make eHow better for everyone.
eHow Computers Computer Netw...
分类:
编程语言 时间:
2014-05-15 02:12:12
阅读次数:
390
(13)where字句操作符
= 等于
!= 不等于
> 大于
>= 大于等于
BETWEEN 在指定的两个值之间
例如:
找出学号是0007到0009之间的学生记录(不包括0009)?
SELECT* FROM student_info WHERE stu_id B...
分类:
数据库 时间:
2014-05-13 13:27:33
阅读次数:
368
给了你n个村庄把,然后m条路径,q个询问,问你两个点之间的最短距离
分析:由于按照题意来说本图是没有环的,所以求a,b的最近公共祖先 到他们的各自的距离之和就是 那个他们的最短路啦,用的是tarjan来做的,我的方法定义了一个dis数组来随时记录路径的长度,其它大神各有自己的神奇之法
#include
#include
#include
#include
#include
#inclu...
分类:
其他好文 时间:
2014-05-13 07:48:39
阅读次数:
303
Assembly instructions
汇编初步学习
汇编0基础的戳上面,刷一遍,包治百病
%eax寄存器的值与C语言的return的值相对应
(%esp)地址处储存的是函数的返回地址 return address
%esp 栈顶寄存器 保存栈顶指针。
%ebp = boundary between p...
分类:
其他好文 时间:
2014-05-13 06:28:37
阅读次数:
416