-
C语言难点介绍
【实例简介】C语言难点介绍
- 2021-12-21 00:31:22下载
- 积分:1
-
huffman编码码长效率
#include
#include
#include
#include
using namespace std;
const MAXSIZE=100;
typedef struct Huffmantree
{
char cname;
int weight,mark;
struct Huffmantree *parent,*lchild,*rchild,*next;
}Hftree,*linktree;
- 2022-04-15 20:09:22下载
- 积分:1
-
Please read your package and describe it at least 40 bytes in English.
Please read your package and describe it at least 40 bytes in English.
- 2022-08-12 14:49:48下载
- 积分:1
-
xml文件读写
本程序是一个简单而有效的实现xml文件读写的功能。创建一个结构体,包含所需要读取或者写入到文件的每一个变量,调用tinyxml静态库,可以将所有变量按照标签格式写入到文件,也可以从文件中读取到结构体对象中。
- 2022-05-21 05:25:28下载
- 积分:1
-
KMP匹配算法(C++实现)
在简单的匹配算法中,时间复杂度为O(m*n),其思想为每次适配后就重新从头开始匹配,所以比较慢;而KMP算法则利用了前面匹配的结果,在一次失配后不从头开始匹配,而是将子串进行一定的滑动,使得时间复杂度变为O(m+n),这样大幅度的缩减了匹配时间。
- 2022-01-25 19:45:46下载
- 积分:1
-
一个有c#发的酒店管理系统,适合初学者学习
一个有c#发的酒店管理系统,适合初学者学习-c#development of a hotel management system
- 2022-07-07 02:31:51下载
- 积分:1
-
GetImage
说明: 可以批量导出ImageList中的图片,并保存。(Pictures in the ImageList can be exported in batches and saved.)
- 2020-06-23 12:20:02下载
- 积分:1
-
ADC7192源码驱动
ADC7192嵌入式源码驱动程序,通用7190,直接驱动,单片机嵌入式程序代码void AD7192Initialization()
{
AD7192SoftwareReset();
AD7192InternalZeroScaleCalibration();
AD7192InternalFullScaleCalibration();
}
void AD7192SoftwareReset()
{
unsigned char WriteBuf[1];
unsigned char ReadBuf[1];
unsigned char i;
ADuC7026OutputBit(CS,0);
WriteBuf[0] = 0xFF;
for(i=0; i
- 2022-02-09 11:48:52下载
- 积分:1
-
关于数组和子和对象的开发 个联系操作 熟悉这种操作
关于数组和子和对象的开发 个联系操作 熟悉这种操作-Arrays and objects on the development of a child, and the familiarity of this action contact
- 2022-04-13 17:01:36下载
- 积分:1
-
Romanian Map - Greedy Search
说明: A greedy algorithm is a simple, intuitive algorithm that is used in optimization problems. The algorithm makes the optimal choice at each step as it attempts to find the overall optimal way to solve the entire problem.
- 2019-04-29 16:15:42下载
- 积分:1