引言HTTP是一个属于应用层的面向对象的协议,由于其简捷、快速的方式,适用于分布式超媒体信息系统。它于1990年提出,经过几年的使用与发展,得到不断地完善和扩展。目前在WWW中使用的是HTTP/1.0的第六版,HTTP/1.1的规范化工作正在进行之中,而且HTTP-NG(Next
Generatio...
分类:
其他好文 时间:
2014-04-29 22:05:03
阅读次数:
747
不能光转贴,有空要熟悉之后,要写点心得。现在发现 .
的优先级确实很高。C:PrecedenceOperatorDescriptionAssociativity1++--Suffix/postfix
increment and decrementLeft-to-right()Function cal...
分类:
编程语言 时间:
2014-04-29 21:56:50
阅读次数:
539
left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录right
join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录inner join(等值连接)
只返回两个表中联结字段相等的行举例如下:--------------------------------...
分类:
数据库 时间:
2014-04-27 21:38:38
阅读次数:
764
n a^o7 !Time Limit: 1000MS Memory limit:
65536K题目描述All brave and intelligent fighters, next you will step into a
distinctive battleground which is ful...
分类:
其他好文 时间:
2014-04-27 21:01:45
阅读次数:
529
行内元素、非置换元素不会应用width属性,比如对行内元素应用了width:200px,你不会看到任何效果出现。
行内元素、非置换元素不会应用height属性,但是高度可以通过line-height来指定。
行内元素你可以给它设置padding,但只有padding-left和padding-right会有效果,没有padding-top和padding-bottom。
margin属性也是和padding属性一样,对行内元素左右有效,上下无效。...
分类:
Web程序 时间:
2014-04-27 19:57:13
阅读次数:
1043
【二分查找】
针对有序数组,性能非常好。
【时间复杂度】
logn
【代码】
#include
#include
//非递归实现二分查找
int BinarySearch1(int a[], int n, int key)
{
int left, right;
int mid;
left = 0;
right = n - 1;
while(left <= right)
...
分类:
其他好文 时间:
2014-04-27 19:42:22
阅读次数:
538
n a^o7 !
Time Limit: 1000MS Memory limit: 65536K
题目描述
All brave and intelligent fighters, next you will step into a distinctive battleground which is full of sweet and happiness. If you wan...
分类:
其他好文 时间:
2014-04-27 19:31:28
阅读次数:
598