字符串转内存c语言,【一起学C】C语言面试题必考:字符串操作函数,内存操作函数实现...

本帖最后由 奉聪 于 2017-1-25 14:54 编辑

*******前言*******

我数一下,我发了几个帖子,1、2、3?

哈哈哈,没几个哈,感谢吾爱,让我学到了很多,乐于分享,共同进步!

最近也是在学c语言,也看了少许面试题

指针,数据结构,字符串操作肯定是重点

今天分享出来的是,一些字符串操作函数和一些内存操作函数的手动实现

内容应该不难,如有错误还请朋友们指出,我会认真改正的,希望一起学习进步

*******目录*******

字符串常见函数:

strlen、strcmp、strcpy、strlwr、strrev、strset、strstr、strupr、itoa、atoi、atof、ftoa

(希望初学者能够尝试用下标访问和指针访问两种方式实现)

内存操作少许函数:

memccpy、memchr、memcpy、memicmp、memmove、memset

(希望读者能够认真手动实现)

当然实际开发中,这些函数直接调用就行了,

但是面试的时候,这是基础知识,这是考察你的基本功 和 砍你工资的大斧

因为简单,所以代码注释少,有疑惑的请告诉我,乐于交流

*******字符串函数*******

1.strlen:计算字符串长度(不包含'\0')

实现想法:遍历字符串,直到'\0'结束

[C] 纯文本查看 复制代码#include

#include

#include

//指针法

unsigned int mystrlenaddr(const char * str) //为什么使用const char,我们只计数不对原数据进行改变

{

int length = 0; //长度初始化为0

while (*str++)

{

length++;

}

return length;

}

void main()

{

char * str = "fengcong is fucking too handsome"; //32个

//printf("%d\n", strlen(str));

printf("%d\n", mystrlenaddr(str));

system("pause");

}

2.strcmp:比较字符串大小(一般用于字符串排序)

实现想法:依次从字符串开始一直找到不同的那个字符进行比较,得出大小

[C] 纯文本查看 复制代码#include

#include

#include

//掌握指针法

int mystrcmp(char const * str1, const char * str2)

{

while (*str1 == *str2 && *str1 != '0') //一直找到两个字符串不同的地方

{

str1++;

str2++;

}

if (*str1 > *str2)

return 1;

else if (*str1 < *str2)

return -1;

else

return 0;

}

void main()

{

char * str = "feng1";

char * str1 = "feng2";

//printf("%d\n", strcmp(str, str1));

printf("%d\n", mystrcmp(str, str1));

system("pause");

}

3.strcpy:用于字符串复制(复制包含'\0')

实现想法:一直复制到'\0'结束

[C] 纯文本查看 复制代码#define _CRT_SECURE_NO_WARNINGS

#include

#include

#include

//指针法

char * mystrcpyaddr(char * dest, const char * source)

{

if (dest == NULL || source == NULL)

{

return NULL; //如果目的操作或者源为空,那么久直接返回

}

while (*dest++ = *source++) //装X写法

;

return dest;

}

//下标法

char * mystrcpyindex(char * dest, const char * source)

{

if (dest == NULL || source == NULL)

{

return NULL; //如果目的操作或者源为空,那么久直接返回

}

int i = 0;

while (source != '\0')

{

dest = source;

i++;

}

dest = source; //因为要把最后的\0拷贝过去

return dest;

}

void main()

{

char * str = "fengcong is fucking too handsome";

char str1[100]; //目的字符数组

//strcpy(str1, str);

//printf("%s\n", str1);

mystrcpyindex(str1, str);

printf("%s\n", str1);

system("pause");

}

4.strlwr:大写转小写

实现想法:遍历字符串,遇到大写转为小写

[C] 纯文本查看 复制代码#include

#include

#include

char * mystrlwr(char * str)

{

char * p1 = str;

while (*p1)

{

if (*p1 >= 'A' && *p1 <= 'Z')

{

*p1 += 32;

}

p1++;

}

return str;

}

void main()

{

char str[50] = "FENGCONG IS FUCKING TOO HANDSOME";

//printf("%s\n", _strlwr(str));

printf("%s\n", mystrlwr(str));

system("pause");

}

5.strrev:字符串逆转

实现想法:头首交换,直到中间

[C] 纯文本查看 复制代码#include

#include

#include

char * mystrrev(char * str)

{

char * p2 = str;

char * p1 = str;

while (*p1++)

{

;

}

p1 -= 2; //回到最后一个字符

while (p1 - p2 >= 1)

{

char temp = *p1;

*p1 = *p2;

*p2 = temp;

p2++;

p1--;

}

return str;

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

//_strrev(str);

//printf("%s\n", str);

printf("%s\n",mystrrev(str));

system("pause");

}

6.strset:将字符串全部设成某字符

实现想法:遍历字符串,每个字符设置某字符,直至'\0'

[C] 纯文本查看 复制代码#define _CRT_SECURE_NO_WARNINGS

#include

#include

#include

char * mystrset(char * str, int value)

{

char * p1 = str;

while (*p1)

{

*p1 = value;

p1++;

}

return str;

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

//printf("%s\n", _strset(str, 'A'));

printf("%s\n", mystrset(str, 'A'));

system("pause");

}

7.strstr:寻找母串中是否存在某个子串(稍难)

实现想法:依次比对

[C] 纯文本查看 复制代码#include

#include

#include

//下标 法

char * mystrstrindex(char * const momstr, const char * const sonstr)//前者指针指向的数据可变,但是指针不可变,后者都不可变

{

int momlen = strlen(momstr); //母串的长度

int sonlen = strlen(sonstr); //子串的长度

for (int i = 0; i < (momlen - sonlen); i++) //从0开始循环母串,到momlen-sonlen停止

{

int flag = 1;

for (int j = 0; j < sonlen; j++)

{

if (momstr[i + j] != sonstr[j])

{

flag = 0;

break; //如果出现不相等就 退出循环,继续从下面一个寻找

}

}

if (flag)

{

return (&momstr);

}

}

return NULL;

}

//指针法

char * mystrstraddr(char * const momstr, const char * const sonstr)

{

char * mstr = momstr; //母串

while (*mstr)

{

char * sstr = sonstr; //子串

char * momnowstr = mstr; //记录现在母串的位置

int flag = 1;

while (*sstr != 0)

{

if (*sstr != *momnowstr || *momnowstr == '0')

{

flag = 0;

break;

}

momnowstr++;

sstr++;

}

if (flag)

{

return mstr;

}

mstr++; //母串对比位置+1

}

return NULL;

}

void main()

{

char * str = "fengcong is too fucking handsome";

//printf("%p", strstr(str, "fengcong"));

//printf("%p", mystrstrindex(str, "engcong"));

printf("%p", mystrstraddr(str, "some"));

system("pause");

}

8.strupr:小写转大写

实现想法:依次遍历,遇到小写转为大写

[C] 纯文本查看 复制代码#define _CRT_SECURE_NO_WARNINGS

#include

#include

#include

char * mystrupr(char * str)

{

char * p1 = str;

while (*p1)

{

if (*p1 >= 'a' && *p1 <= 'z')

{

*p1 -= 32;

}

p1++;

}

return str;

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

//printf("%s\n", _strupr(str));

printf("%s\n", mystrupr(str));

system("pause");

}

9.itoa:整数转字符串

[C] 纯文本查看 复制代码#define _CRT_SECURE_NO_WARNINGS

#include

#include

#include

char * myitoa(int value, char * str)

{

char * pstr = str; //str本身不能改变,一会要返回str

if (value < 0)

{

*pstr = '-';

pstr++;

value *= -1; //转变为正数处理

}

int wei = 1; //数至少一位

int ivalue = value; //用于测试长度

while ((ivalue /= 10) != 0)

{

wei++;

}

pstr += wei-1;

while (value % 10 != 0)

{

*pstr-- = (value % 10)+'0';

value /= 10;

}

return str;

}

void main()

{

int num = -45644;

char str[20] = { 0 };

printf("%s", myitoa(num, str));

system("pause");

}

10.atoi:字符串转整数(遇到非数字字符结束)

[C] 纯文本查看 复制代码#include

#include

#include

int myatoi(const char * str)

{

if (str == NULL)

{

return 0;

}

int num = 0; //需要返回的值

int flag = 1; //记录正负号

if (*str == '-')

{

flag = -1;

str++;

}

else if (*str == '+')

{

str++;

}

while (*str >= '0' && *str <= '9')

{

num= (num * 10 + (*str - '0'));

str++;

}

return num*flag;

}

void main()

{

char str[20] = "-57124";

int num = 0;

printf("%d\n",myatoi(str));

system("pause");

}

11.atof:字符串转浮点数

[C] 纯文本查看 复制代码#include

#include

#include

double myatof(char const * str)

{

if (str == NULL)

return 0;

//首先判断有无符号位

int flag = 1;

if (*str == '-')

{

flag = -1;

str++;

}

if (*str == '+')

{

str++;

}

int zhengshu = 0; //存储整数部分

while (*str >= '0' && *str <= '9')

{

zhengshu = zhengshu * 10 + (*str - '0');

*str++;

}

//整数部分循环完了

double xiaoshu = 0.0; //存储小数部分

//因为不明符号停止整数循环

if (*str != '.')

{

return (flag * zhengshu);

}

else //代表遇到. 结束

{

str++; //指向小数部分第一位

double i = 0.1;

while (*str >= '0' && *str <= '9')

{

xiaoshu = xiaoshu + (*str - '0')*i;

i /= 10;

str++;

}

return flag *(zhengshu + xiaoshu);

}

}

void main()

{

char str[20] = "2.1554";

double db = 0.0;

printf("%lf\n", myatof(str));

system("pause");

}

12.ftoa:浮点数转字符串(浮点数存储不准确,可能有少许误差)

[C] 纯文本查看 复制代码#include

#include

#include

char * myftoa(double db, char * str)

{

char * pstr = str;

//先判断 符号位

if (db < 0)

{

*pstr = '-';

db *= -1; //转为正数处理

pstr++;

}

//整数部分

int zhengshu = (int)db;

int izhengshu = zhengshu; //牺牲于记录整数长度

int wei = 1; //整数部分至少一位

while ((izhengshu /= 10) != 0)

{

wei++;

}

pstr += wei - 1;

for (int i = 0; i < wei; i++)

{

*pstr-- = zhengshu % 10 + '0';

zhengshu /= 10;

}

pstr += (wei+1);

*pstr = '.';

pstr++;

//小数部分

double xiaoshu = db - (int)db;

for (int i = 0; i < 6; i++)

{

*pstr++ = (int)(xiaoshu * 10) + '0';

xiaoshu = xiaoshu * 10 - (int)(xiaoshu * 10);

}

return str;

}

void main()

{

double db = -2.11;

char str[20] = { 0 };

printf("%s\n", myftoa(db,str));

system("pause");

}

*******内存操作函数*******

1.memccpy:内存拷贝,直到一个值结束

[C] 纯文本查看 复制代码#include

#include

#include

//下标法

void * mymemccpybyindex(void * dest, const void * sor,int val, size_t len)

{

if (dest == NULL || sor == NULL)

{

return NULL;

}

for (int i = 0; i < len; i++)

{

if( (((char*)dest) = ((char*)sor)) == val)

return dest;

}

return dest;

}

//指针法

void * mymemccpybyaddr(void * dest, const void * sor,int val, size_t len)

{

if (dest == NULL || sor == NULL)

{

return NULL;

}

char * pdest = dest;

char * psor = sor;

char * plast = (char *)sor + len;

while (psor < plast)

{

if ((*pdest++ = *psor++) == val)

return dest;

}

return dest;

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

char * pstr = (char[50]) { 0 }; //在栈上开辟一段内存

//printf("%s\n", memccpy(pstr,str,'s',32));

printf("%s\n", mymemccpybyaddr(pstr, str, 'f', 32));

system("pause");

}

2.memchr:某段内存中寻找某个值

[C] 纯文本查看 复制代码#include

#include

#include

void * mymemchar(void * buf, int val, size_t size)

{

if (buf == NULL)

{

return NULL;

}

char * p = buf;

char plast = p + size;

while (p < plast)

{

if (*p == val)

{

return p;

}

p++;

}

return NULL;

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

printf("%s\n", mymemchar(str, 'g', 8));

system("pause");

}

3.memcpy:拷贝某段内存

[C] 纯文本查看 复制代码#include

#include

#include

//下标法

void * mymemcpybyindex(void * dest, const void * sor, size_t len)

{

if (dest == NULL || sor == NULL)

{

return NULL;

}

for (int i = 0; i < len; i++)

{

((char*)dest) = ((char*)sor);

}

return dest;

}

//指针法

void * mymemcpybyaddr(void * dest, const void * sor, size_t len)

{

if (dest == NULL || sor == NULL)

{

return NULL;

}

char * pdest = dest;

char * psor = sor;

char * plast = (char * )sor + len;

while (psor < plast)

{

*pdest++ = *psor++;

}

return dest;

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

char * pstr = (char[50]) { 0 }; //在栈上开辟一段内存

//printf("%s\n", memcpy(pstr, str, 32));

printf("%s\n", mymemcpybyaddr(pstr, str, 31));

system("pause");

}

4.memicmp:比较某段内存大小(一个字节一个字节比较,像strcmp)

注意:切不可用来比较整数,除非一字节整数,因为整数存储方式是高位高字节

[C] 纯文本查看 复制代码#include

#include

#include

int mymemicmpbyaddr(const void * buf1, const void * buf2, size_t size)

{

char * p1 = buf1;

char * p2 = buf2;

int i = 0;

while(*p1 == *p2 && i < size)

{

p1++;

p2++;

i++;

}

if (*p1 > *p2)

{

return 1;

}

else if (*p1 < *p2)

return -1;

else

return 0;

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

char str1[50] = "fengfeng is fucking too handsome";

printf("%d\n", mymemicmpbyaddr(str, str1, 32));

system("pause");

}

5.memmove:和memcpy类似,但是memmove采用了中间空间,memcpy是直接拷贝

两者区别之处在于当拷贝地址重复的时候,结果不一样(比较代码可知)

[C] 纯文本查看 复制代码#include

#include

#include

#include

void * mymemmove(void * dest, const void * sor, size_t size)

{

char * ptemp = malloc(size); //中间 地址

memcpy(ptemp, sor, size);

memcpy(dest, ptemp, size);

free(ptemp);

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

//memmove(str + 3, str + 4, 2);

mymemmove(str + 3, str + 4, 2);

printf("%s\n",str);

system("pause");

}

6.memset:对指定内存每个字节赋某个值

[C] 纯文本查看 复制代码#include

#include

#include

//下标法

void * mymemsetbyindex(void * dest, int val, size_t len)

{

if (dest == NULL)

{

return NULL;

}

if (len == 0)

{

return dest;

}

char * p = dest;

for (int i = 0; i < len; i++)

{

p = val;

}

return dest;

}

//指针法

void * mymemsetbyaddr(void * dest, int val, size_t len)

{

if (dest == NULL)

{

return NULL;

}

if (len == 0)

{

return dest;

}

char * p = dest;

char * plast = p + len;

while (p < plast)

{

*p++ = val;

}

return dest;

}

void main()

{

char str[50] = "fengcong is fucking too handsome";

//printf("%s\n", memset(str, 65, 8));

printf("%s\n", mymemsetbyaddr(str, 65, 8));

system("pause");

}

*******结束语*******

内容应该都不难,希望大家讨论讨论,认真实现,不要让这基本功成为

面试官挥动大斧砍你工资的把柄

文中代码区,少许地方少*,不知道为什么,请注意添加

再会了,还是那句话,你们开心就好,拜个早年!

= ̄ω ̄=

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/551086.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

matlab 图像显著性检测ft_全局对比度的图像显著性检测算法

点击上方蓝字关注我们星标或者置顶【OpenCV学堂】干货与教程第一时间送达&#xff01;显著性检测概念显著性就是可以快速引起你注意的对象或者物体&#xff0c;在图像或者视频中显著性检测的结果往往是图像或者视频中对象&#xff0c;在神经学科中显著性检测被描述为注意力机制…

在c51语言的程序中 注释一般采用,【判断题】在 C51 语言的程序中,注释一般采用 /* */ 和 // 来实现。 (3.0分)...

当ab&#xff1c;0时&#xff0c;化简a2b的结果是()A&#xff0e;&#xff0d;abB&#xff0e;a&#xff0d;bC&#xff0e;&#xff0d;a&#xff0d;bD&#xff0e;ab(&#xff0d;5)2的化简结果为()A&#xff0e;25B&#xff0e;5C&#xff0e;&#xff0d;5D&#xff0e;&a…

修改所有列_哪些数据库是行存储?哪些是列存储?有什么区别?

大多数数据库系统存储一组数据记录&#xff0c;这些记录由表中的列和行组成。字段是列和行的交集&#xff1a;某种类型的单个值。属于同一列的字段通常具有相同的数据类型。例如&#xff0c;如果我们定义了一个包含用户数据的表&#xff0c;那么所有的用户名都将是相同的类型&a…

函数指针定积分C语言,急!!!利用函数指针变量编写一个求定积分的通用函数,...

急&#xff01;&#xff01;&#xff01;利用函数指针变量编写一个求定积分的通用函数&#xff0c;答案:4 信息版本&#xff1a;手机版解决时间 2021-05-05 09:17已解决2021-05-05 02:15用它分别求5个函数的定积分:每次需要求定积分的函数是不一样的。可以编写一个求定积分的通…

cordova 更改app版本_【ios马甲包cps联运】App上架难 马甲包不知道该怎么做?

专业app代上架&#xff01;解决全网IOS上包难诸多问题 ,提供多类别马甲包功能包定制服务&#xff01;(直播.财务.社交.生活.游戏.电商)另外提供app加速审核及好评优化服务.长期出售白包功能包!总的来说&#xff0c;App Store 的上架流程&#xff0c;主要分为 7 大步骤:1、创建证…

须使用visual c 内联汇编语言开发,在VisualC 中使用内联汇编

在VisualC 中使用内联汇编2008-04-09 04:08:57来源&#xff1a;互联网 阅读 ()一、内联汇编的优缺点因为在Visual C 中使用内联汇编不需要额外的编译器和联接器&#xff0c;且可以处理Visual C 中不能处理的一些事情&#xff0c;而且可以使用在C/C 中的变量&#xff0c;所以非常…

dockerfile 修改文件权限_网易技术实践|Docker文件系统实战

在本文中&#xff0c;我们来实战构建一个Docker镜像&#xff0c;然后实例化容器&#xff0c;在Docker的生命周期中详细分析一下Docker的文件存储情况和DockerFile优化策略。在开始实战之前&#xff0c;我们先介绍一个概念&#xff0c;联合文件系统&#xff08;Union File Syste…

stm32c语言写数码管定时器,使用TIM1产生1秒定时控制数码管显示0-9(STM32_10)

一、项目配置1、新建项目文件夹"TimSeg"&#xff1b;2、通过Keil5创建新项目&#xff0c;保存在所创建的文件夹中(设项目名为pTimSeg)&#xff0c;选择MCU芯片为"STM32F103ZE"(本程序使用的硬件为&#xff1a;STM32-PZ6806L开发板)3、在"TimSeg"…

pandas自动创建文件夹_pandas快速入门

pandas有两类数据对象&#xff1a;dataframe和series。Series是一个带标签的一维数组&#xff0c;通常索引在左&#xff0c;值在右。dataframe是一个带标签的二维数组&#xff0c;可以理解成series的字典&#xff0c;共用索引标签。重点记录dataframe的相关用法&#xff1a;一.…

小数分数转换c语言,这是把小数转换成分数的程序,可是输入0.6666无限循环

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼#include int main(){double a;scanf("%lf", &a);输入小数int b, c 0, d 0;double b1 a;do{b1 *10;b (int)b1;printf("%d\n", b);if(b%10!0){c;if(d>0){c d;d 0;}}else{d;}}while(d<5);printf("…

血栓清道夫机器人_血栓“清道夫”找到了!木耳排第三,排在第一很多人都并不知道...

当血液中出现大量的血栓&#xff0c;很容易堵塞血管&#xff0c;多处血栓&#xff0c;主要是由于血液中积聚了大量的脂类物质&#xff0c;沉积在血管内壁上形成的&#xff0c;而日常生活中不良的饮食习惯则会加剧我们血液的粘稠程度&#xff0c;大量的直流物质&#xff0c;更容…

for循环c语言流水灯,巧用数组与for循环为流水灯程序瘦身

数组——一种储存大量同性质数据的连续存储器空间a [6];b [] {2&#xff0c;4&#xff0c;8&#xff0c;3&#xff0c;6};c[6] {1&#xff0c;2&#xff0c;3&#xff0c;4&#xff0c;5&#xff0c;6};char d[6] "hello";以上方式均是数组创建的常用方式~数组是从…

java的map 使用string数组多了双引号_奥奥奥利给!!!再也不怕面试官问我String源码了!来吧...

简述字符串广泛应用 在 Java 编程中&#xff0c;在 Java 中字符串属于对象&#xff0c;Java 提供了String 类来创建和操作字符串。字符串缓冲区支持可变字符串。因为String对象是不可变的&#xff0c;因此可以共享它们。String类代表字符串&#xff0c;Java程序中的所有字符串字…

C 语言 运算符怎么使用,详解C++编程中运算符的使用

C的运算符十分丰富&#xff0c;使得C的运算十分灵活方便。例如把赋值号()也作为运算符处理&#xff0c;这样&#xff0c;abc4就是合法的表达式&#xff0c;这是与其他语言不同的。C提供了以下运算符&#xff1a;算术运算符(加) -(减) *(乘) /(除) %(整除求余) (自加) --(…

面积积分_袁颖妍:用定理积分求平面区域面积(有代表性的9个例题)

考研竞赛智慧e数学的广告&#xff1a;鸡汤所谓“理解”&#xff0c;所谓“智商”&#xff0c;本质上最终都归到"记忆",还有一点就是能够发现自己“记忆”中各个零散的知识点的关系。所谓“智商”高低的人&#xff0c;其实是强化这些“记忆”的能力的不同&#xff0c;…

vip会员管理系统c语言,路西牌会员管理系统。

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼void VIP::show( Node *v){no(v);char *aVIP::sex(v);std::cout<<< "会员姓名: "<< node.item.num[1]<< endl<< "性别: "<< sex(v)<<< "手机号码: "<…

字体选择_十分钟带你掌握精准选择字体的方法!

文章序言&#xff1a;上次记得有粉丝评论需要讲讲字体&#xff0c;今天就给大家带来一期关于&#xff0c;如何快速选择合适的字体的文章&#xff0c;帮助大家以后把字体用对&#xff0c;用好&#xff0c;用准。在讲这个字体的时候会结合实际的案例操作给大家讲解&#xff0c;这…

c语言输出行末不得有多于空格,新人提问:如何将输出时每行最后一个空格删除...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼如何将每行最后一个空格删除&#xff0c;使矩阵只有数字间有空格&#xff0c;没有多余空格&#xff1f;#include#includeint main(){int i,j,k,m,n,x,h,y;int a[15][15]{0};while(scanf("%d",&i)){k1;for(n1;n<i;…

php对象数组转数组_php 数组对象互相转换

有时候会遇到php中对象和数组之间的互相转换/*** 将对象转换为多维数组***/function objectToArray($d) {if (is_object($d)) {// Gets the properties of the given object// with get_object_vars function$d get_object_vars($d);}if (is_array($d)) {/** Return array con…

linux 查看neihe版本_linux查看系统内核版本号

查看系统内核有三种方法&#xff1a;第一种方法&#xff1a;[rootlocalhost nginx]# uname -aLinux localhost.localdomain 2.6.32-696.30.1.el6.i686 #1 SMP Tue May 22 02:54:00 UTC 2018 i686 i686 i386 GNU/Linux第二种方法&#xff1a;uname -r[rootlocalhost nginx]# una…