搜索资源列表
日期、菜单、字符串的C函数
- 日期、菜单、字符串的C函数-date, menu, the C string functions
candc++languagereference
- 很好的一本工具书,提供了C/C++函数查询,分为以下几个方面阐述,预处理命令、关键字、标准C的I/O,String,Charactor,Math,Time,Data,Memory,以及C++的I/O,String,及标准模版类。推荐。
asp.netBD
- 这是asp.net^和Visual C++Sharp编写的串并口通讯的书籍 源代码,对于学习串口程序很有 帮助 -This is asp.net ^ and Visual C++ Sharp prepared string parallel communication books source code, useful for studying the serial process
3.8CString
- CString 是一种很有用的数据类型。 这里面的好多函数都是自己写的,相信对你很有用。它们很大程度上简化了MFC中的许多操作,使得MFC在做字符串操作的时候方便了很多。不管怎样,使用CString有很多特殊的技巧,特别是对于纯C背景下走出来的程序员来说有点难以学习。-CString is a very useful data type. There' s a lot of functions are written in their own, I believe that is us
CPP123
- C/C++ 语言参考 基本C/C++ 预处理命令 操作符优先级 转义字符 ASCII码表 基本数据类型 关键字 标准 C 库: Standard C I/O Standard C String & Character Standard C Math Standard C Time & Date Standard C Memory Other standard C functions C++ C++ I/O
KMP
- KMP 模式匹配算法实例 C++源码 字符串查找-KMP pattern matching algorithm in C++ source code search string
heshsi
- 有一些可能的符号K, A, N, C, E, p, q, r, s, t 。一个合式公式是符合以下条 件的字符串: • p, q, r, s, 和t 是合式公式 • 如果w 是合式公式,Nw 是合式公式 • 如果w 和x 是合式公式,Kwx, Awx, Cwx, 和Ewx 是合式公式。-There are some of the possible symbols K, A, N, C, E, P, Q, R, S T. A well-formed f
User-defined-String
- 自定义字符串类的C++实现--头文件及源代码-- Header files and source code from defined string class C++ implementation
c
- 从键盘里输入字符,并通过显示屏回显字符。-input string and output it
deck-of-cards
- 编写一个洗牌和发牌的程序,包含类Card, 类DeckOfCards和一个驱动程序 类Card有: a) int型的数据成员face和suit b) 接受两个int型数据表示面值和花色的构造函数用于初始化数据 c) 两个string类型的static数组代表面值和花色 d) 一个toString函数返回Card,形式是“face of suit”的字符串。可以用+运算符连接字符串 类DeckOfCards有: a) 一个名为deck的Card类vector,用于存储C
hello
- 标准的C++String类,源代码,有利于学习初等的C++语言-hello good student
dotnetencrypt
- .Net框架由于拥有CLR提供的丰富库支持,只需很少的代码即可实现先前使用C等旧式语言很难实现的加密算法。 本类实现一些常用机密算法,供参考。其中MD5算法返回Int的ToString字串。-. Net Framework With CLR provides support for the rich, can be achieved with minimal code using C and other old-fashioned language previously difficul
lingdianqifeixue_cPP
- 《零点起飞学c++》结合大量示例和实战案例,由浅入深、循序渐进地介绍c++语言的相关知识,尤其对面向过程的程序设计到面向对象的程序设计做了重点介绍和必要辨析,《零点起飞学c++》共分4篇,第1篇面向过程的c++编程,包括走进c++、数据类型、变量和常量、运算符、表达式和语句、指针的操作、复合数据类型、函数、输入/输出,以及面向过程的编程案例。第2篇介绍面向对象的c++编程,包括封装、命名空间和作用域、继承和派生、多态、模板,以及面向对象的编程案例。第3篇介绍c++的高级开发技术,包括string
huffman.c
- 哈弗曼树构造算法。通过输入字符串构造哈弗曼树,生成哈弗曼编码(Huffman tree construction algorithm. The input string Huffman tree structure, generating Havermann encoding)
wow4
- Random String Generator. This form allows you to generate random text strings. The randomness comes from atmospheric noise, which for many purposes is ...
各章源代码
- 数据结构与算法书上的字符串代码,比较基础,适合初学者(String code on the data structure book)
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
my_strlen_
- my_strlen 自己实现的strlen函数(my_strlen my return string length)
测量字符串长度
- 测量字符串长度,输入字符串,输出字符串的长度。(Measure the length of the string, input the string, output the length of the string.)