-
软件学院数据结构与算法分析实验报告
Huffman编码(二叉树应用)...
软件学院数据结构与算法分析实验报告
Huffman编码(二叉树应用)-School of Software Data Structures and Algorithm Analysis lab report Huffman coding (binary application)
- 2022-02-24 14:51:21下载
- 积分:1
-
图书馆管理系统 Java 摇摆
Java 库管理系统旨在帮助您简化管理物理存储库 (而不是软件库) 的任务组成的单个库存物品如书籍、 磁带、 光盘等。
- 2022-03-04 09:08:52下载
- 积分:1
-
闲来无事,上来看看,每次来都有点愧疚的感觉,老是索取代码提问,今天把我写的一个...
闲来无事,上来看看,每次来都有点愧疚的感觉,老是索取代码提问,今天把我写的一个-nothing better to do, look onto each have to feel a little guilty, always obtain the code to ask questions, I write today in the 1
- 2022-08-19 12:38:22下载
- 积分:1
-
MATLAB边缘检测
毕设课题研究半导体表面缺陷的定位,以下是,sobel prewitt Roberts log canny算子进行边缘检测的源代码,以及双峰法 最大类间方差法 迭代法进行阈值分割的源程序,希望对大家有帮助。
- 2022-02-03 17:40:39下载
- 积分:1
-
Two
二维数组运算,避免一维的麻烦,效率高,简单-Two-dimensional array of computing, to avoid the trouble of one-dimensional, high efficiency, simple
- 2022-03-20 17:07:30下载
- 积分:1
-
将数据库文件转换为文本文件
将数据库文件转换为文本文件-database files will be converted to text files
- 2022-02-02 21:29:37下载
- 积分:1
-
我们网络安全的期末作业,一个简易的获取本机ip的c++小程序。...
我们网络安全的期末作业,一个简易的获取本机ip的c++小程序。-At the end of our network security operations, a simple access to the local ip of the c small procedures.
- 2022-10-06 05:20:02下载
- 积分:1
-
ndissniffer代码
NdisSniffer code-NdisSniffer code
- 2022-08-15 09:05:35下载
- 积分:1
-
本程序是对Windows系统盘的增减情况做出判断。程序内容如下:每一定的时间间隔对系统的盘符信息读取一次,当前的盘符数和之前一次的盘符数进行对比,当盘符增加或者...
本程序是对Windows系统盘的增减情况做出判断。程序内容如下:每一定的时间间隔对系统的盘符信息读取一次,当前的盘符数和之前一次的盘符数进行对比,当盘符增加或者减少则弹出MessageBox进行提示。尤其是当移动存储设备例如u盘的插入,可以进行判断。-This procedure is the Windows system tray to determine changes in circumstances. Procedures are as follows: each time interval of the system to read a letter of information, the current number and before the first letter of the letter a few comparisons, when the drive to increase or reduce the MessageBox to pop-up prompts. Especially when the mobile storage devices such as the u disk insertion, can be judged.
- 2022-03-30 10:47:32下载
- 积分: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