广播、多播 IGMP协议 DNS协议
单播是指两台主机的点对点,广播和多播则是一对多。
广播和多播仅用于UDP
广播:
四种广播地址:
受限的广播:255.255.255.255 改地址用于主机配置过程中IP数据报的目的地址。
指向网络的广播:A类网络广播地址为neid.255.255.255 neid为A类网络的网络号。
指向子网的广播:主机号全为1且有特定子网号的地址。例如...
分类:
其他好文 时间:
2015-04-06 14:18:01
阅读次数:
136
Archlinux 折腾记录及感受(中)看到Arch从本地硬盘启动,并能成功连上wifi,心情无比激动。然而,这仅仅只是开始。接下来,需要配置基本的图形界面,浏览器,字体,输入法,窗口管理器,文件管理器…定制一个专属于自己轻量级操作系统。基本系统配置
创建一个日常使用的桌面用户,并给用户添加root权限以及使用zsh作为终端# pacman -S zsh
# useradd -m -g users...
分类:
系统相关 时间:
2015-04-06 14:19:08
阅读次数:
189
asp.net的缓存分为3种:
第一种:页面缓存
只需要在页面顶部加上:%@OutputCache Duration='60' VaryByPara='none' %>
Druation:缓存时间,60秒
VaryByPara:参数,是否根据参数缓存
DisCacheEnable='true|false':缓存是否保存在磁盘
第二种:数据缓存:
1.ie缓存:当客户浏览一个...
分类:
Web程序 时间:
2015-04-06 14:18:47
阅读次数:
150
Battle City
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 7208
Accepted: 2427
Description
Many of us had played the game "Battle city" in our childhood, ...
分类:
其他好文 时间:
2015-04-06 14:16:39
阅读次数:
140
在项目开发过程中,往往需要,解析字符串来取得tag值,从而匹配本地数据库之中的储存值,达到数据传输的效果;
包括游戏之中也是这样,通过字符串的为操作,或字符串的解析的操作,从而达到解析的目的;
我来给你造轮子---第二期
字符串模拟解析:
NSArray *array = [[NSArray alloc]initWithObjects:@"逗A",@"逗B",@"逗C",@"逗D"...
分类:
移动开发 时间:
2015-04-06 14:17:19
阅读次数:
141
若是在32bit机器上,使用gcc编译器,得到的sizeof(A)和sizeof(B)分别为多少?
class A
{
int a;
short b;
int c;
char d;
};
class B
{
double a;
short b;
int c;
char d;
};
我个人的理解的对齐 ...
分类:
其他好文 时间:
2015-04-06 14:18:26
阅读次数:
155
#include
#include
#include
#include
#include
using namespace std;
#define maxn 1000000 + 10
int n, m;
int h[maxn], q[maxn];
map mark;
void solve()
{
sort(h, h+n);
int t;
while(m--...
分类:
其他好文 时间:
2015-04-06 14:16:36
阅读次数:
116
前面两篇回归(一)(二)复习了线性回归,以及L1与L2正则——lasso和ridge regression。特别描述了lasso的稀疏性是如何产生的。在本篇中介绍一下和lasso可以产生差不多效果的两种方法:stagewise和LARS...
分类:
其他好文 时间:
2015-04-06 14:15:37
阅读次数:
3088
#include
using namespace std;
class base
{
private:
int m;
public:
base() {};
base(int m){this->m=m;}
int get(){return m;}
void set(int m){this->m=m;}
};//base_end
int main()
{
...
分类:
其他好文 时间:
2015-04-06 14:16:04
阅读次数:
107
Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.
For example:
Given the following binary tree,
1 ...
分类:
其他好文 时间:
2015-04-06 14:17:43
阅读次数:
104
You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
思路1:直接开辟一个数组,然后按照对应关系复制即可,空间和时间复杂度o(N*N)
代码1:
...
分类:
其他好文 时间:
2015-04-06 14:16:43
阅读次数:
124
八皇后问题,是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:
在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上
(斜率为1),问有多少种摆法。高斯认为有76种方案。
1854年在柏林的象棋杂志上不同的作者发表了40种不同的解,后来有人用图论的方法解出92种结果。
计算机发明后,有多种方法可...
分类:
编程语言 时间:
2015-04-06 14:15:43
阅读次数:
144
#include
using namespace std;
class Time
{
public:
Time(int,int,int);
void output_time( );
int hour;
int minute;
int sec;
};
Time::Time(int h,int m,int s)
{
hour=h;
minut...
分类:
其他好文 时间:
2015-04-06 14:16:00
阅读次数:
109
是工具就要有工具的便利性,我们来设置eclipse的自动补全功能!
1、
Windows——>Preferences——>Java-->Editor-->Content Asist,在Auto activation triggers for Java后面的文本框里只有一个“.”2、
在这个点后面增加 #
和 所有的字母
#abcdefghijklmnopqrstuvwxyzABCDEFG...
分类:
系统相关 时间:
2015-04-06 14:15:32
阅读次数:
176
//编写一个函数实现n^k,使用递归实现
#include
int fun(int n,int k) //求n的k次方
{
int sum;
if (k==0)
{
sum=1;
}
else
{
sum=n*fun(n,k-1);
}
return sum;
}
int main ()
{
printf("%d\n",fun(2,3));
return 0...
分类:
编程语言 时间:
2015-04-06 14:17:11
阅读次数:
109
Inline Functions
10行以上的函数不要内联。
可以使用编译器自动内联。
Function Parameter Ordering
参数顺序: 输入, 输出
输入通常是值或者常量引用
Names and Order of Includes
举例,在dir/foo.h 中:
dir/foo.h
C system files
C++ system files
Other libraries...
分类:
编程语言 时间:
2015-04-06 14:14:22
阅读次数:
128
做项目,还是做其它什么的,首先必须得要有好的规划以及明确的项目目标以及各个阶段想要取得的效果,目标变来变去是失败的根本。连自己都不知道做什么,还能指望做出什么来。 其次,目标要实际。实际这个词其实意思很虚,没人知道什么是不实际,尤其是当局者。所谓实际,就是要能根据个人精力以及在现有技术条件下能...
分类:
其他好文 时间:
2015-04-06 14:15:07
阅读次数:
153