Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hanxiaomax/krc_examples
https://github.com/hanxiaomax/krc_examples
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hanxiaomax/krc_examples
- Owner: hanxiaomax
- Created: 2014-02-16T01:39:11.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-16T01:49:18.000Z (almost 11 years ago)
- Last Synced: 2023-08-13T02:31:09.212Z (over 1 year ago)
- Language: C
- Size: 113 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
KRC_examples
============Examples in <C programing language>
--------------------------------------
###Chapter 2
emp2-1 `strlen`的1.0版本
emp2-2 `atoi`函数,将一串数字转换为相应的数。即把字符串转换为整形数
emp2-3 把字符转换为小写
emp2-3-1 打印ASCII码表
emp2-4 `squeeze`函数:从字符串`s`中删除`c`字符
emp2-5 `strcat(s,t)`函数:把字符串`t`连接到`s`的尾部
emp2-6 `getbit(x,p,n)`函数,返回`x`中,从右边数第`p`位开始,右数`n`位的字段
emp2-7 `bitcount`函数,统计值为1的二进制位数
###Chapter 3
emp3-1 折半查找函数`binsearch`
emp3-2 统计空白符,数字及其他字符,用`switch`
emp3-3 更通用的`atoi`函数,可以处理前置空白符和可选的`-`,`+`号
emp3-4 `shell`排序函数
emp3-5 `reverse`函数(逗号表达式)
emp3-6 `itoa` 函数
emp3-7 `trim`函数,删除结尾的空格,制表,换行
###Chapter 4
emp4-1 打印包含某字符串的行
emp4-3 `atof`函数。返回值为`double`
emp4-4 简单计算器程序
###Chapter 5
emp5-1 编写`Getint`函数,将任意的输入,分割为整数。并给数组赋值
emp5-2 `alloc(n)`创建一个`n`字节的储存空间,`afree(p)`释放空间
emp5-3 比较每行的长度并排序,按顺序打印
emp5-4 日期转换,计算是一年中的第几天或相反
emp5-5 增强型模式查找函数,从命令行输入待查找模式
emp5-6 ,而不是增强型模式查找函数,支持带-号的可选参数
emp5-7 比较每行的长度并排序,按顺序打印,可选参数-n表示以数值为基础/*未完成*/
emp5-8 将C语言的声明转换为文字描述/**/
###Chapter 6
emp6-1 结构数组:统计关键词个数