-
SNLC
本程序是使用C语言实现SLN语言的编译器功能,包括词法分析,语法分析,语义分析以及优化生成功能。(SLN language compiler features implemented in C)
- 2021-03-24 09:49:14下载
- 积分:1
-
lua-5.2.0-tests.tar
Lua是一个强大、快速、轻量级的、可嵌入的脚本语言。
Lua结合简单程序的语法与强大的数据描述构造基于关联数组和可扩展的语义。Lua是动态类型,通过解释字节码的运行一个基于寄存器的虚拟机,自动内存管理和增量垃圾收集,这使得它非常适合配置、脚本、和快速原型。
(Lua is a powerful, fast, lightweight, embeddable scripting language.
Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping. )
- 2012-10-09 17:15:56下载
- 积分:1
-
ADI电磁流量计解决方案及资料
电磁流量计的设计方案,基于ADI的完整方案,稍加整理可用。(The design of the electromagnetic flowmeter, the complete scheme, is available.)
- 2017-12-18 13:02:39下载
- 积分:1
-
Hamming码的仿真实现
基于C++的Hamming码的仿真实现,
信道为高斯信道,调制方式为bpsk
- 2022-05-23 03:44:15下载
- 积分:1
-
C51单片机EEPROM(IIC总线)
用于C51单片机EEPROM(IIC总线)通信模拟kill编译
- 2022-07-12 05:10:44下载
- 积分:1
-
生成8位密码程序
无参考意义
- 2013-12-09下载
- 积分:1
-
主动让WINDOWS XP黑屏的源码,简单的WIN32 API学习
主动让WINDOWS XP黑屏的源码,简单的WIN32 API学习-WINDOWS XP black initiative to the source, the simple learning WIN32 API
- 2022-02-15 05:35:36下载
- 积分:1
-
fuzzy
模糊控制得matlab仿真程序,主要做模糊控制仿真学习使用简单易懂。(Fuzzy control with matlab simulation program, the main job of fuzzy control simulation study using simple to understand.)
- 2009-10-12 21:31:26下载
- 积分:1
-
MAVLINK_CRC
mavlink协议的CRC校验程序,输入对应的MAVLINK消息帧,输出该消息帧的CRC校验位。(Mavlink protocol of the CRC validation process, enter the corresponding MAVLINK message frame, the output of the message frame of the CRC check bit.)
- 2021-05-10 10:18:52下载
- 积分:1
-
dic.c
说明: 英文单词排版及查询系统基本功能(大小写敏感):录入单词和释义、修改单词、修改释义、文件录入、输出到屏幕和输出到文件、输入单词查询已有释义。
一种简单的英文单词排版系统实现
一、功能
英文单词排版及查询系统基本功能(大小写敏感):录入单词和释义、修改单词、修改释义、文件录入、输出到屏幕和输出到文件、输入单词查询已有释义。
二、实现约定
1、单词结构
typedef struct dictWord {
char word[101];
char meaning[201];
} DictWord;
2、录入单词和释义
录入规则:
A) 一行只能录入一个单词或词组和释义,
B) 可以只录入单词
C) 每一次录入得单词总长度包含空格不超过100字符
D) 不能只录入释义
E) 单词和释义之间必须有空格
F) 单词是连续的或有空格的字母,不能有其他字符
G) 录入异常打印对应的错误信息。
H) 录入时单词已经存在且释义不同,则视为修改释义,增加修改计数
I) 释义应只包含汉字、阿拉伯数字和汉字标点符号且长度不超过100字
3、修改单词
修改(Basic functions of English word layout and query system (case sensitive): enter words and interpretations, modify words, modify interpretation, file entry, output to screen and output to documents, input word query has been interpreted.)
- 2020-04-05 22:51:51下载
- 积分:1