-
是一种主动探测工具pathChirp估计的可用带宽
pathChirp is an active probing tool for estimating the available bandwidth on a communication network path. Based on the concept of "self-induced congestion," pathChirp features an exponential flight pattern of probes we call a chirp. Packet chirps offer several significant advantages over current probing schemes based on packet pairs or packet trains. By rapidly increasing the probing rate within each chirp, pathChirp obtains a rich set of information from which to dynamically estimate the available bandwidth.
- 2022-01-25 22:17:59下载
- 积分:1
-
分治法求大数乘法的问题 等等一些算法分析
分治法求大数乘法的问题 等等一些算法分析-datastructure
- 2023-08-22 14:40:03下载
- 积分:1
-
此文件是拼图游戏(由鼠标控制点击,可选折不同的拼图内容)
此文件是拼图游戏(由鼠标控制点击,可选折不同的拼图内容)-puzzles (by clicking on the mouse control, optional packs of different puzzles.)
- 2022-02-02 14:22:31下载
- 积分:1
-
C++通过解剖,提出了一种编程过程深入的介绍…
C++ by Dissection presents a thorough introduction to the programming process by
carefully developing working programs to illuminate key features of the C++ programming
language. Program code is explained in an easy-to-follow, careful manner throughout.
The code has been tested on several platforms and is found on the bundled CDrom
accompanying this text. The code in C++ By Dissection can be used with most C++
systems, including those found in operating systems such as MacOS, MS-DOS, OS/2,
UNIX, and Windows.
- 2022-05-22 05:36:45下载
- 积分:1
-
This is a realization of the J2ME smartphone simulator run by the Russian box sm...
这是一个J2ME实现的在智能手机模拟器上运行通过的俄罗斯方块小游戏.编译运行环境为eclipse+eclipseme+J2ME wireless Toolkit-This is a realization of the J2ME smartphone simulator run by the Russian box small game. Compiler runtime environment for wireless J2ME eclipse eclipseme Toolkit
- 2022-12-22 03:25:03下载
- 积分:1
-
完成曲线拟合,%往往给出一些数据,然后通过曲线拟合,然后预测未知的数据...
完成曲线拟合,%往往给出一些数据,然后通过曲线拟合,然后预测未知的数据-Complete curve-fitting, are given some data, and then through the curve fitting, and then predict the unknown data
- 2022-07-15 08:00:42下载
- 积分:1
-
主要是IIC都测试程序,是mini2440开发板都程序,希望对大家有用...
主要是IIC都测试程序,是mini2440开发板都程序,希望对大家有用-IIC are both the main test procedure is the development board are mini2440 procedures useful for everyone
- 2022-02-07 09:47:03下载
- 积分:1
-
biospassword
biospassword
- 2022-05-29 19:21:20下载
- 积分:1
-
C-C++欢迎大家的多多阅读-C-C++
- 2022-04-08 11:04:00下载
- 积分:1
-
火车订票系统
应用背景用C语言写的火车订票系统,对于C语言学习者学习链表有极大的帮助,内含测试文件供测试。。。。。。。。。。。。关键技术/*定义存储火车信息的结构体*/
struct train
{
char num[10];/*列车号*/
char city[10];/*目的城市*/
char takeoffTime[10];/*发车时间*/
char receiveTime[10];/*到达时间*/
int price;/*票价*/
int bookNum ;/*票数*/
};
/*订票人的信息*/
struct man
{
char num[10];/*ID*/
char name[10];/*姓名*/
int bookNum ;/*需求的票数*/
};
/*定义火车信息链表的结点结构*/
typedef struct node
{
struct train data ;
struct node * next ;
}Node,*Link ;
/*定义订票人链表的结点结构*/
typedef struct people
{
struct man data ;
struct people*next ;
}bookMan,*bookManLink ;
- 2022-02-01 04:42:30下载
- 积分:1