六星经典CSAPP-笔记(11)网络编程参照《深入理解计算机系统》简单学习了下Unix/Linux的网络编程基础知识,进一步深入学习Linux网络编程和TCP/IP协议还得参考Stevens的书。1.网络基础(略过,待补充)2.IP地址2.1 IP地址的表示IP地址是一个无符号的32位整数。Linux网络程序使用下面这种IP地址结构存储IP地址:/* Internet address structu...
分类:
移动平台 时间:
2015-05-15 22:53:19
收藏:
0 评论:
0 赞:
0 阅读:
307
1、错误描述
2、错误原因
3、解决办法...
分类:
其他 时间:
2015-05-15 22:52:57
收藏:
0 评论:
0 赞:
0 阅读:
393
一,散列运算的特点
1,散列运算是不可逆的,可以将散列运算理解为单向的加密:根据原消息经过散列运算就可以得到摘要(密文);但是根据摘要,无法推导出原消息。
2,任何两个不相同的文件,哪怕只有一个字节的细微差别,得到的摘要都是完全不同的。这个特点的意义在于,可以用来判断消息是否被篡改,即解决完整性的问题。
3,无论原始消息的大小如何,运算得出的摘要的信息是固定长度,...
分类:
Web开发 时间:
2015-05-15 22:52:47
收藏:
0 评论:
0 赞:
0 阅读:
317
这题的关键就是预处理矩阵利用
dp[i][j] = dp[i - 1][j] + dp[i][j - 1] - dp[i-1][j-1]
递推出矩阵,使得我们以后每次已经利用O(1)的复杂度计算任意一块矩阵
之后枚举正方形左上角的坐标二分边长,时间复杂度为n^2 log(n)
#include
#include
#include
using namespace std;
const int...
分类:
其他 时间:
2015-05-15 22:52:33
收藏:
0 评论:
0 赞:
0 阅读:
328
离线处理,并查集
#include
#include
#include
using namespace std;
const int maxn = 100005;
struct Node{
int id,value;
}node[maxn],input[maxn];
bool cmp(Node p,Node q){
return p.value > q.value;...
分类:
其他 时间:
2015-05-15 22:52:26
收藏:
0 评论:
0 赞:
0 阅读:
350
1、错误描述
org.apache.batik.transcoder.TranscoderException: null
Enclosed Exception:
Attribute name "aphmodel" associated with an element type "mxg" must be followed by the ' = ' character.
at org.apach...
分类:
其他 时间:
2015-05-15 22:52:06
收藏:
0 评论:
0 赞:
0 阅读:
593
怎么用一个宏来求三个数值的中间值呢?请看:...
分类:
其他 时间:
2015-05-15 22:51:47
收藏:
0 评论:
0 赞:
0 阅读:
283
1、错误描述
2、错误原因
3、解决办法...
分类:
系统服务 时间:
2015-05-15 22:51:44
收藏:
0 评论:
0 赞:
0 阅读:
2416
1、错误描述
org.hibernate.exception.ConstraintViolationException: error executing work
at org.hibernate.exception.internal.SQLExceptionTypeDelegate.convert(SQLExceptionTypeDelegate.java:72)
at org.hiber...
分类:
其他 时间:
2015-05-15 22:51:27
收藏:
0 评论:
0 赞:
0 阅读:
1077
题目:输入两颗二叉树A和B,判断B是不是A的子结构。二叉树结点的定义如下:
struct BinaryTreeNode{
int m_nValue;
BinaryTreeNode *m_pLeft;
BinaryTreeNode *m_pRight;
};
//在数A中查找与树B根结点值相同的结点,然后递归判断,查找过程也是递归
bool HasSubTree(BinaryTreeN...
分类:
其他 时间:
2015-05-15 22:51:17
收藏:
0 评论:
0 赞:
0 阅读:
306
You have multiset of n strings of the same length, consisting of lowercase English letters. We will say that those strings are easy to
remember if for each string there is some position i and some l...
分类:
其他 时间:
2015-05-15 22:51:07
收藏:
0 评论:
0 赞:
0 阅读:
333
css特效
介绍两种css 特效
1,模糊滤镜
先看效果:
对比一下没有滤镜效果的界面:
通过添加css 类实现:.ui-modal-mask-blur {
-webkit-filter: blur(2px);
-moz-filter: blur(2px);
-ms-filter: blur(2px);
-o-filter: blur(2px);
f...
分类:
Web开发 时间:
2015-05-15 22:50:57
收藏:
0 评论:
0 赞:
0 阅读:
270
1. 使用libsvm工具箱时,可以指定使用工具箱自带的一些核函数(-t参数),主要有:-t kernel_type : set type of kernel function (default 2)0 -- linear: u'*v1 -- polynomial: (gamma*u'*v + co...
分类:
其他 时间:
2015-05-15 22:48:47
收藏:
0 评论:
0 赞:
0 阅读:
354
./scripts/mysql_install_db --user=mahao01 --basedir=/home/mahao01/local/mysql --datadir=/home/mahao01/local/mysql/data/#启动:./bin/mysqld_safe --default...
分类:
数据库技术 时间:
2015-05-15 22:48:37
收藏:
0 评论:
0 赞:
0 阅读:
218
C#中的事件处理实际上是一种具有特殊签名的delegate,象下面这个样子:public delegate void MyEventHandler(object sender, MyEventArgs e);其中的两个参数,sender代表事件发送者,e是事件参数类。MyEventArgs类用来包含...
分类:
Windows开发 时间:
2015-05-15 22:48:17
收藏:
0 评论:
0 赞:
0 阅读:
427
本文记录了用新浪微博官方Python SDK调用API进行开发的流程。准备工作申请成为开发者并创建一个应用:首先要有一个新浪微博的账号,然后去新浪微博开放平台(http://open.weibo.com/)创建一个应用,具体的步骤官网文档介绍的非常详细:在开发者页面点击“登录” -> “创建应用” ...
分类:
编程语言 时间:
2015-05-15 22:48:07
收藏:
0 评论:
0 赞:
0 阅读:
496
CDVPlugin 类是所有 Cordova 类均必须扩展的父类。CDVPlugin 类通过 PhoneGAP API 封装本机 JavaScript 通信所需的所有必要逻辑。PhoneGap.exec函数可让您调用该新类上的函数。CDVPlugin 类包含一个名为writeJavascript的核...
分类:
其他 时间:
2015-05-15 22:47:57
收藏:
0 评论:
0 赞:
0 阅读:
295
字符串模式匹配算法——BM、Horspool、Sunday、KMP、KR、AC算法一网打尽转载自:http://dsqiu.iteye.com/blog/1700312本文内容框架:§1 Boyer-Moore算法§2 Horspool算法§3 Sunday算法§4 KMP算算法§5 KR算法§6 ...
分类:
编程语言 时间:
2015-05-15 22:47:47
收藏:
0 评论:
0 赞:
0 阅读:
347
Today I got a issue that window.location.origin returns undefined in IE 9 .But we can fix this issue with following code:if (!window.location.origin) ...
分类:
Windows开发 时间:
2015-05-15 22:47:37
收藏:
0 评论:
0 赞:
0 阅读:
363
原文:http://blog.csdn.net/baikaishui525/article/details/9473251Python的一些第三方库只到注册表的HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Python\PythonCore\2.7\InstallP...
分类:
编程语言 时间:
2015-05-15 22:47:27
收藏:
0 评论:
0 赞:
0 阅读:
288