-
泛洪协议的简单的3节点测试协议,测试安装的泛洪协议是否可正常运行。...
泛洪协议的简单的3节点测试协议,测试安装的泛洪协议是否可正常运行。-A simple flooding protocol to test the 3-node protocol, test protocol installed on the possibility of flooding normal operation.
- 2023-05-10 15:55:03下载
- 积分:1
-
PSO schaffe
PSO(粒子群算法)求解Schaffe问题,并附上实验报告-PSO Schaffe
- 2022-03-21 22:30:26下载
- 积分:1
-
没有任何功能,只作演示用的程序粗略框架。适合教学使用。...
没有任何功能,只作演示用的程序粗略框架。适合教学使用。-There is no function, only the procedures used for a rough framework for presentation. Suitable for teaching use.
- 2022-06-28 05:37:56下载
- 积分:1
-
医院管理系统
医院管理系统,c#,由前台和后台共同组成,可以连接数据库,用到的数据库是sqlsever.
- 2023-08-15 09:45:03下载
- 积分:1
-
可以在文章中进行高级英文单词查找,支持模糊匹配
可以在文章中进行高级英文单词查找,支持模糊匹配-article in the senior English word search, fuzzy matching support
- 2022-04-23 01:44:30下载
- 积分:1
-
wins mp3波形显示
项目的目的是播放mp3并且实时显示mp3波形,与频谱相对应,项目中的sln文件可以用visual studio2010软件直接打开,并且可以直接编译运行。对大家了解win32的编程和MP3的播放都有很大的帮助
- 2022-04-18 11:34:40下载
- 积分:1
-
基于VC++的编程,这是一个声卡采集演示,显示WAV…
声卡数据采集播放演示源程序(vc),可以显示声卡书库的波形-Based on VC programming, it is a demo for sound card collection, showing the waveform of sound card library.
- 2022-09-25 12:10:03下载
- 积分:1
-
This program provide the demand of error information,you can get error descripti...
提供windows错误信息的查询,输入错误号可以找出错误描述,对分析错误有很大帮助。-This program provide the demand of error information,you can get error description by input error number,it is helpful for error analysis
- 2022-02-10 06:38:37下载
- 积分:1
-
C++ Achieve MPEG audio header data read with the estimated length of time. This...
C++实现MPEG话音帧头数据读取与时间长度估计.这个文章和程序针对的是包含XING和VBRI头的MPEG audio帧进行读取,然后根据它们估算声音的长度。这里不包括任何的话音audio数据的编码与解码。不过,文章确实对audio frame header进行了非常详细的说明。-C++ Achieve MPEG audio header data read with the estimated length of time. This article and procedures aimed at containing XING and VBRI head read MPEG audio frame, and then according to their estimates of the length of the sound. Here does not include any voice audio data encoding and decoding. However, the article on the audio frame header is indeed a very detailed explanation.
- 2022-06-12 21:19:20下载
- 积分:1
-
can代码
can代码
class CPoint{
private: //私有成员
float m_x, m_y;
protected: //保护成员
void SetPoint(float x, float y) {m_x = x; m_y = y;}
public: //公共成员
CPoint(float x, float y) {m_x = x; m_y = y;} //构造函数
void Move(float x, float y) {SetPoint(m_x + x, m_y + y);}
void Display() {cout
- 2022-04-01 02:38:18下载
- 积分:1