搜索资源列表
日期、菜单、字符串的C函数.rar
- 日期、菜单、字符串的C函数
公式分析器C++
- 用C++写的一个公式分析器,能够从一个字符串组成的算式中的出最后结构,现在支持+,-,*,/(),五种计算方式-C write a formula Analyzer, from a formula composed of a string of final structure, now support ,-,*,/(), five formula
日期、菜单、字符串的C函数
- 日期、菜单、字符串的C函数-date, menu, the C string functions
SysUtils
- 采用引用记数的一个C++字符串类源码,此类与Delphi中的string类型类似
用C语言编写的一个编译器小程序
- 用C语言编写的一个编译器小程序 可以读出输入的字符串并把他按照字母,符号,数字等分类,希望给初学编译原理的网友有帮助。
c++
- 一个关于c++应用对象的编程,从中可以了解到将数组作为函数参数,利用指针处理字符串的方法。本人已经调试通过。十分适合初学c++者参考
整数转换为字符串
- 用递归将整数转换为字符串的C++程序 通过求得整数每位数,再将其转为ASCII码,再调换每位顺序-using recursive integral to the conversion to a string obtained by C program every few Integer, and then converted to ASCII and then swap each sequence
字符串加CRC校验
- 给任意长度的字符串,加CRC校验码的c语言算法-to arbitrary length of the string, plus CRC algorithm in C Language
C语言kmp算法实现
- 研究计算机程序算法中关于字符串操作的经典算法实现源程序-study computer programming algorithm for string manipulation of the classic algorithm source code
abc
- 单片机向主机发送字符串,用C语言写的,对初学者很有用-Microcontroller sends a string to the host, written with C language, useful for beginners
C
- 第一部分 基础篇 实例1 第一个C程序 2 实例2 求整数之积 6 实例3 比较实数大小 8 实例4 字符的输出 10 实例5 显示变量所占字节数 11 实例6 自增/自减运算 13 实例7 数列求和 14 实例8 乘法口诀表 17 实例9 猜数字游戏 19 实例10 模拟ATM(自动柜员机)界面 22 实例11 用一维数组统计学生成绩 24 实例12 用二维数组实现矩阵转置 26 实例13 求解二维数组的最大/最小元素 29 实例14 利
lex
- 用C语言实现了简单的词法分析功能,用户输入任意字符串,程序输出经分析后的token序列-Using C language to achieve a simple lexical analysis function, the user to enter arbitrary strings, the program output by the analysis of the token sequence
str
- C语言中,把16进制转换成字符串,一般在对中文进行传递中用到-C language to convert a string of 16 hex, the general in the Chinese language used in the transmission of
KMP
- KMP 模式匹配算法实例 C++源码 字符串查找-KMP pattern matching algorithm in C++ source code search string
c
- 使用汇编语言编写的简易字符串匹配,输入字符串,并输入关键字与之匹配-Written in assembly language using simple string matching, the input string, and enter the keyword to match
cPP
- 模仿C++库中的string类,声明一个C++字符串类string,该类基本框架-To imitate C++ library string class the to declare a C++ string class string class basic framework
经典编程900例(C语言)
- C语言经典代码,包括数学函数,数组,文件,字符串,键盘等(the classical code of C)
C语言中printf的使用
- printf()函数是式样化输出函数, 一般用于向准则输出设备按规定式样输出消息。正在编写步骤时经常会用到此函数。printf()函数的挪用式样为: printf("<式样化字符串>",<参量表>);(The printf () function is a stylized output function, which is generally used to output messages to a standard output dev
C语言中scanf的使用
- 首先需要#include <stdio.h>int scanf( const char *format, ... );scanf()函数是格式化输入函数,它从标准输入设备(键盘) 读取输入的信息。第一个参数format为一个常量字符串,这个字符串中如果包含‘%’符号则使用后续参数进行匹配如:scanf("%d%d", &a, &b);(First, we need #include <stdio.h>int scanf (const c
测量字符串长度
- 测量字符串长度,输入字符串,输出字符串的长度。(Measure the length of the string, input the string, output the length of the string.)