为了适应下一代通信系统的需求,需要对无线网络资源进行科学的整体管理,提出了跨层设计这种新的系统优化方法。文中通过对各类跨层设计的分析、对跨层优化步骤的阐述和对跨层优化实现方法的描述,打破传统分层设计中"层"的界限,对物理层、数据链路层和应用层等参数进行联合优化,获得各种通信性能指标之间的平衡,使总体通信性能最优。分析和仿真结果表明,在一般信道信噪比的情况下,跨层设计对视频通信质量有明显的改善,峰值信噪比提高了0.6~1.0 dB。
上传时间: 2014-12-30
上传用户:hjshhyy
二层交换技术是发展比较成熟,二层交换机属数据链路层设备,可以识别数据包中的MAC 地址信息,根据MAC 地址进行转发,并将这些MAC 地址与对应的端口记录在自己内部的一个地址表中。
标签: 四层交换
上传时间: 2013-11-22
上传用户:来茴
网桥的原理与作用,网桥工作在数据链路层,将两个LAN连起来,根据MAC地址来转发帧,具体详见文档
标签: 网桥
上传时间: 2014-12-22
上传用户:q123321
此代码主要完成在vxworks 环境下的网络编程,使用是组件,可以完成数据链路的测试
上传时间: 2014-01-04
上传用户:hustfanenze
C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264
标签: my_Include include define 3.141
上传时间: 2014-01-17
上传用户:epson850
DNP 3.0通讯规约,包括数据链路层、传输层、应用层、数据对象库4部分。
上传时间: 2015-03-27
上传用户:hopy
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda
源代码\用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a,b,c依次序排列时,有13种不同的序列关系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要将n个数依序列,设计一个动态规划算法,计算出有多少种不同的序列关系, 要求算法只占用O(n),只耗时O(n*n).
上传时间: 2013-12-26
上传用户:siguazgb
c语言版的多项式曲线拟合。 用最小二乘法进行曲线拟合. 用p-1 次多项式进行拟合,p<= 10 x,y 的第0个域x[0],y[0],没有用,有效数据从x[1],y[1] 开始 nNodeNum,有效数据节点的个数。 b,为输出的多项式系数,b[i] 为b[i-1]次项。b[0],没有用。 b,有10个元素ok。
上传时间: 2014-01-12
上传用户:变形金刚
linux下,ppp的源代码,ppp为数据链路层的点到点协议
标签: linux
上传时间: 2013-12-14
上传用户:com1com2