PHP VERSION = 5.3.10一、关于 $_REQUESTPHP 文档关于 $_REQUEST 的说明:说明默认情况下包含了 $_GET,$_POST 和 $_COOKIE 的数组。更新日志版本 说明5.3.0 引入 request_order。该指令会影响 $_REQUEST...
分类:
编程语言 时间:
2015-05-28 08:11:34
阅读次数:
237
主键:1)任意两行都不具有相同的主键值:2)每个行都必须具有一个或多个主键值(主键列不允许NULL值)3)主键列中的值不允许修改或更新;4)主键值不能重用(如果某行从表中删除,它的主键不能赋给以后的新行)在指定一条ORDER BY 子句里,应保证它是SELECT语句中最后一条子句。按多个列排序:SE...
分类:
数据库 时间:
2015-05-28 00:40:06
阅读次数:
273
1、查询语句尽量不要使用select *等操作,原因:避免查询出不必要的数据,避免表结构变化后sql语句出错2、对where, group by,order by等后面的字段加索引来提高速度,但索引不能太多。3、了解数据库设计的几个范式,但是设计时有时候需要适当的违法范式来提高数据操作性能,如:通过...
分类:
数据库 时间:
2015-05-27 22:30:15
阅读次数:
130
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:
其他好文 时间:
2015-05-27 21:10:51
阅读次数:
137
这道题目甚长, 代码也是甚长, 但是思路却不是太难。然而有好多代码实现的细节, 确是十分的巧妙。 对代码阅读能力, 代码理解能力, 代码实现能力, 代码实现技巧, DFS方法都大有裨益, 敬请有兴趣者耐心细读。(也许由于博主太弱, 才有此等感觉)。题目: UVa 1103In order to un...
分类:
其他好文 时间:
2015-05-27 21:04:40
阅读次数:
294
TSql Frist_Value 和 Last_Value 是两个分析函数,使用上必须基于窗口函数over。1,SyntaxFIRST_VALUE ( [scalar_expression ] ) OVER ( [ partition_by_clause ] order_by_clause [ ro...
分类:
数据库 时间:
2015-05-27 15:32:24
阅读次数:
174
Codeforces Round #298 (Div. 2), problem: (A) Exam
An exam for n students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with adjacent numbers (i and i?+?1) always studied side...
分类:
其他好文 时间:
2015-05-27 10:19:29
阅读次数:
150
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.
For example,
Given [3,2,1,5,6,4] and k = 2, return 5.
...
分类:
其他好文 时间:
2015-05-27 10:15:36
阅读次数:
118
描述
You want to processe a sequence of n distinct integers by swapping two adjacent sequence elements until the sequence is sorted in ascending order. Then how many times it need.
For example, 1 2 3 ...
分类:
其他好文 时间:
2015-05-27 10:09:49
阅读次数:
120
Find thekth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.For exampl...
分类:
其他好文 时间:
2015-05-27 08:35:51
阅读次数:
175