linux 算法函数,数据结构——算法之(012)( linux C 全部字符串操作函数实现)...

数据结构——算法之(012)( linux C 所有字符串操作函数实现)

题目:实现linux C下常用的字符串操作函数

题目分析:

一、面试中可能经常遇到这样的问题:比如strcpy、memcpy、strstr

二、参考了linux 内核代码,对linux大神表示感谢,代码写得相当精致,这里拿来与大家分享吧

算法实现:

/*

* linux/lib/string.c

*

* Copyright (C) 1991, 1992 Linus Torvalds

*/

/*

* stupid library routines.. The optimized versions should generally be found

* as inline code in

*

* These are buggy as well..

*

* * Fri Jun 25 1999, Ingo Oeser

* - Added strsep() which will replace strtok() soon (because strsep() is

* reentrant and should be faster). Use only strsep() in new code, please.

*

* * Sat Feb 09 2002, Jason Thomas ,

* Matthew Hawkins

* - Kissed strtok() goodbye

*/

#include "string_fun.h"

/**

* strnicmp - Case insensitive, length-limited string comparison

* @s1: One string

* @s2: The other string

* @len: the maximum number of characters to compare

*/

int strnicmp(const char *s1, const char *s2, unsigned int len)

{

/* Yes, Virginia, it had better be unsigned */

unsigned char c1, c2;

if (!len)

return 0;

do {

c1 = *s1++;

c2 = *s2++;

if (!c1 || !c2)

break;

if (c1 == c2)

continue;

c1 = tolower(c1);

c2 = tolower(c2);

if (c1 != c2)

break;

} while (--len);

return (int)c1 - (int)c2;

}

int strcasecmp(const char *s1, const char *s2)

{

int c1, c2;

do {

c1 = tolower(*s1++);

c2 = tolower(*s2++);

} while (c1 == c2 && c1 != 0);

return c1 - c2;

}

int strncasecmp(const char *s1, const char *s2, unsigned int n)

{

int c1, c2;

do {

c1 = tolower(*s1++);

c2 = tolower(*s2++);

} while ((--n > 0) && c1 == c2 && c1 != 0);

return c1 - c2;

}

/**

* strcpy - Copy a %NUL terminated string

* @dest: Where to copy the string to

* @src: Where to copy the string from

*/

char *strcpy(char *dest, const char *src)

{

char *tmp = dest;

while ((*dest++ = *src++) != '\0')

/* nothing */;

return tmp;

}

/**

* strncpy - Copy a length-limited, %NUL-terminated string

* @dest: Where to copy the string to

* @src: Where to copy the string from

* @count: The maximum number of bytes to copy

*

* The result is not %NUL-terminated if the source exceeds

* @count bytes.

*

* In the case where the length of @src is less than that of

* count, the remainder of @dest will be padded with %NUL.

*

*/

char *strncpy(char *dest, const char *src, unsigned int count)

{

char *tmp = dest;

while (count)

{

if ((*tmp = *src) != 0)

src++;

tmp++;

count--;

}

return dest;

}

/**

* strcat - Append one %NUL-terminated string to another

* @dest: The string to be appended to

* @src: The string to append to it

*/

char *strcat(char *dest, const char *src)

{

char *tmp = dest;

while (*dest)

dest++;

while ((*dest++ = *src++) != '\0')

;

return tmp;

}

/**

* strncat - Append a length-limited, %NUL-terminated string to another

* @dest: The string to be appended to

* @src: The string to append to it

* @count: The maximum numbers of bytes to copy

*

* Note that in contrast to strncpy(), strncat() ensures the result is

* terminated.

*/

char *strncat(char *dest, const char *src, unsigned int count)

{

char *tmp = dest;

if (count)

{

while (*dest)

dest++;

while ((*dest++ = *src++) != 0)

{

if (--count == 0)

{

*dest = '\0';

break;

}

}

}

return tmp;

}

/**

* strcmp - Compare two strings

* @cs: One string

* @ct: Another string

*/

int strcmp(const char *cs, const char *ct)

{

unsigned char c1, c2;

while (1)

{

c1 = *cs++;

c2 = *ct++;

if (c1 != c2)

return c1 < c2 ? -1 : 1;

if (!c1)

break;

}

return 0;

}

/**

* strncmp - Compare two length-limited strings

* @cs: One string

* @ct: Another string

* @count: The maximum number of bytes to compare

*/

int strncmp(const char *cs, const char *ct, unsigned int count)

{

unsigned char c1, c2;

while (count)

{

c1 = *cs++;

c2 = *ct++;

if (c1 != c2)

return c1 < c2 ? -1 : 1;

if (!c1)

break;

count--;

}

return 0;

}

/**

* strchr - Find the first occurrence of a character in a string

* @s: The string to be searched

* @c: The character to search for

*/

char *strchr(const char *s, int c)

{

for (; *s != (char)c; ++s)

if (*s == '\0')

return NULL;

return (char *)s;

}

/**

* strrchr - Find the last occurrence of a character in a string

* @s: The string to be searched

* @c: The character to search for

*/

char *strrchr(const char *s, int c)

{

const char *p = s + strlen(s);

do {

if (*p == (char)c)

return (char *)p;

} while (--p >= s);

return NULL;

}

/**

* strnchr - Find a character in a length limited string

* @s: The string to be searched

* @count: The number of characters to be searched

* @c: The character to search for

*/

char *strnchr(const char *s, unsigned int count, int c)

{

for (; count-- && *s != '\0'; ++s)

if (*s == (char)c)

return (char *)s;

return NULL;

}

/**

* skip_spaces - Removes leading whitespace from @str.

* @str: The string to be stripped.

*

* Returns a pointer to the first non-whitespace character in @str.

*/

char *skip_spaces(const char *str)

{

while (isspace(*str))

++str;

return (char *)str;

}

/**

* strim - Removes leading and trailing whitespace from @s.

* @s: The string to be stripped.

*

* Note that the first trailing whitespace is replaced with a %NUL-terminator

* in the given string @s. Returns a pointer to the first non-whitespace

* character in @s.

*/

char *strim(char *s)

{

unsigned int size;

char *end;

size = strlen(s);

if (!size)

return s;

end = s + size - 1;

while (end >= s && isspace(*end))

end--;

*(end + 1) = '\0';

return skip_spaces(s);

}

/**

* strlen - Find the length of a string

* @s: The string to be sized

*/

unsigned int strlen(const char *s)

{

const char *sc;

for (sc = s; *sc != '\0'; ++sc)

/* nothing */;

return sc - s;

}

/**

* strspn - Calculate the length of the initial substring of @s which only contain letters in @accept

* @s: The string to be searched

* @accept: The string to search for

*/

unsigned int strspn(const char *s, const char *accept)

{

const char *p;

const char *a;

unsigned int count = 0;

for (p = s; *p != '\0'; ++p)

{

for (a = accept; *a != '\0'; ++a)

{

if (*p == *a)

break;

}

if (*a == '\0')

return count;

++count;

}

return count;

}

/**

* strcspn - Calculate the length of the initial substring of @s which does not contain letters in @reject

* @s: The string to be searched

* @reject: The string to avoid

*/

unsigned int strcspn(const char *s, const char *reject)

{

const char *p;

const char *r;

unsigned int count = 0;

for (p = s; *p != '\0'; ++p)

{

for (r = reject; *r != '\0'; ++r)

{

if (*p == *r)

return count;

}

++count;

}

return count;

}

/**

* strpbrk - Find the first occurrence of a set of characters

* @cs: The string to be searched

* @ct: The characters to search for

*/

char *strpbrk(const char *cs, const char *ct)

{

const char *sc1, *sc2;

for (sc1 = cs; *sc1 != '\0'; ++sc1)

{

for (sc2 = ct; *sc2 != '\0'; ++sc2)

{

if (*sc1 == *sc2)

return (char *)sc1;

}

}

return NULL;

}

/**

* strsep - Split a string into tokens

* @s: The string to be searched

* @ct: The characters to search for

*

* strsep() updates @s to point after the token, ready for the next call.

*

* It returns empty tokens, too, behaving exactly like the libc function

* of that name. In fact, it was stolen from glibc2 and de-fancy-fied.

* Same semantics, slimmer shape. ;)

*/

char *strsep(char **s, const char *ct)

{

char *sbegin = *s;

char *end;

if (sbegin == NULL)

return NULL;

end = strpbrk(sbegin, ct);

if (end)

*end++ = '\0';

*s = end;

return sbegin;

}

/**

* memset - Fill a region of memory with the given value

* @s: Pointer to the start of the area.

* @c: The byte to fill the area with

* @count: The size of the area.

*

* Do not use memset() to access IO space, use memset_io() instead.

*/

void *memset(void *s, int c, unsigned int count)

{

char *xs = s;

while (count--)

*xs++ = c;

return s;

}

/**

* memcpy - Copy one area of memory to another

* @dest: Where to copy to

* @src: Where to copy from

* @count: The size of the area.

*

* You should not use this function to access IO space, use memcpy_toio()

* or memcpy_fromio() instead.

*/

void *memcpy(void *dest, const void *src, unsigned int count)

{

char *tmp = dest;

const char *s = src;

while (count--)

*tmp++ = *s++;

return dest;

}

/**

* memmove - Copy one area of memory to another

* @dest: Where to copy to

* @src: Where to copy from

* @count: The size of the area.

*

* Unlike memcpy(), memmove() copes with overlapping areas.

*/

void *memmove(void *dest, const void *src, unsigned int count)

{

char *tmp;

const char *s;

if (dest <= src)

{

tmp = dest;

s = src;

while (count--)

*tmp++ = *s++;

}

else

{

tmp = dest;

tmp += count;

s = src;

s += count;

while (count--)

*--tmp = *--s;

}

return dest;

}

/**

* memcmp - Compare two areas of memory

* @cs: One area of memory

* @ct: Another area of memory

* @count: The size of the area.

*/

int memcmp(const void *cs, const void *ct, unsigned int count)

{

const unsigned char *su1, *su2;

int res = 0;

for (su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)

if ((res = *su1 - *su2) != 0)

break;

return res;

}

/**

* memscan - Find a character in an area of memory.

* @addr: The memory area

* @c: The byte to search for

* @size: The size of the area.

*

* returns the address of the first occurrence of @c, or 1 byte past

* the area if @c is not found

*/

void *memscan(void *addr, int c, unsigned int size)

{

unsigned char *p = addr;

while (size)

{

if (*p == c)

return (void *)p;

p++;

size--;

}

return (void *)p;

}

/**

* strstr - Find the first substring in a %NUL terminated string

* @s1: The string to be searched

* @s2: The string to search for

*/

char *strstr(const char *s1, const char *s2)

{

unsigned int l1, l2;

l2 = strlen(s2);

if (!l2)

return (char *)s1;

l1 = strlen(s1);

while (l1 >= l2)

{

l1--;

if (!memcmp(s1, s2, l2))

return (char *)s1;

s1++;

}

return NULL;

}

/**

* strnstr - Find the first substring in a length-limited string

* @s1: The string to be searched

* @s2: The string to search for

* @len: the maximum number of characters to search

*/

char *strnstr(const char *s1, const char *s2, unsigned int len)

{

unsigned int l2;

l2 = strlen(s2);

if (!l2)

return (char *)s1;

while (len >= l2)

{

len--;

if (!memcmp(s1, s2, l2))

return (char *)s1;

s1++;

}

return NULL;

}

/**

* memchr - Find a character in an area of memory.

* @s: The memory area

* @c: The byte to search for

* @n: The size of the area.

*

* returns the address of the first occurrence of @c, or %NULL

* if @c is not found

*/

void *memchr(const void *s, int c, unsigned int n)

{

const unsigned char *p = s;

while (n-- != 0)

{

if ((unsigned char)c == *p++)

return (void *)(p - 1);

}

return NULL;

}

/**

* memchr - Put the string into an integer.

* @s: The string

*

* returns int which come from @s

*/

int atoi(const char *s)

{

if(!s || ((*s != '-') && !isdigit(*s)))

return 0;

int value = 0;

const char *t = s;

char c = *s;

do{

if(isdigit(c))

value = value*10 + c-'0';

if(s-t>0 && !isdigit(*s))

break;

++s;

}while((c = *s) != '\0');

return (*t == '-'? -value: value);

}

/**

* memchr - Put the string into an long int.

* @s: The string

*

* returns long int which come from @s

*/

long atol(const char *s)

{

const char *p = skip_spaces(s);

if(!p || ((*p != '-') && !isdigit(*p)))

return 0;

long value = 0;

const char *t = p;

char c = *p;

do{

if(isdigit(c))

value = value*10 + c-'0';

if(p-t>0 && !isdigit(*p))

break;

++p;

}while((c = *p) != '\0');

return (*t == '-'? -value: value);

}

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

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

相关文章

汇编 begin_【精品】小学作文500字汇编九篇

【精品】小学作文500字汇编九篇在我们平凡的日常里&#xff0c;大家或多或少都会接触过作文吧&#xff0c;作文可分为小学作文、中学作文、大学作文(论文)。你所见过的作文是什么样的呢&#xff1f;以下是小编为大家整理的小学作文500字9篇&#xff0c;希望能够帮助到大家。小学…

linux mkdir绝对路径,linux学习(六)绝对路径、相对路径、cd、mkdir、rmdir、rm(示例代码)...

一、绝对路径就是从根开始的&#xff0c;如&#xff1a;/root、/usr/local。二、相对路径相对于当前路径的&#xff0c;比如我们在当前路径下建立了一个a.txt。[[email protected] ~]# pwd/]# ls1.cap 33.txt Application iptables.bak oneinstack shellscripts1.ipt a.php Doc…

python3.6打包成exe可执行文件、已解决方案_Python 3.6打包成EXE可执行程序的实现...

1、下载pyinstallerpython 3.6 已经自己安装了pip&#xff0c;所以只需要执行 pip install pyinstaller就可以了2、打包程序进入到你你需要打包的目录&#xff1b;比如我在H:\xcyk开始打包&#xff0c;执行pyinstaller xxx.py我们发现&#xff0c;竟然报错&#xff01;&#xf…

steam加速_Apex英雄Steam版锁60帧 GoLink免费加速器助力畅快_综合资讯

之前一度爆火的大逃杀游戏《Apex英雄》最近登录了Steam平台&#xff0c;并且支持与Origin平台数据互通。这让很多被烂橘子平台劝退的玩家选择了在Steam平台重新入坑《Apex英雄》&#xff0c;不过由于Steam版刚推出&#xff0c;免不得出现很多问题&#xff0c;很多玩家在进入游戏…

springboot主线程_Springboot对多线程的支持详解

Springboot对多线程的支持详解这两天看阿里的JAVA开发手册&#xff0c;到多线程的时候说永远不要用 new Thread()这种方式来使用多线程。确实是这样的&#xff0c;我一直在用线程池&#xff0c;到了springboot才发现他已经给我们提供了很方便的线程池机制。本博客代码托管在git…

信号灯文件锁linux线程,linux——线程同步(互斥量、条件变量、信号灯、文件锁)...

一、说明linux的线程同步涉及&#xff1a;1、互斥量2、条件变量3、信号灯4、文件读写锁信号灯很多时候被称为信号量&#xff0c;但个人仍觉得叫做信号灯比较好&#xff0c;因为可以与“SYSTEM V IPC的信号量”相区分(如有不同意见&#xff0c;欢迎探讨)。二、互斥量1、定义互斥…

wpf 大数据界面_24小时删!WPF 界面开发可视化数据源500行代码分享

通过DevExpress WPF Controls&#xff0c;您能创建有着强大互动功能的XAML基础应用程序&#xff0c;这些应用程序专注于当代客户的需求和构建未来新一代支持触摸的解决方案。在本教程中&#xff0c;您将完成可视化数据源所需的步骤。应该执行以下步骤&#xff0c;本文我们将为大…

反向题在测试问卷信效度_(完整版)问卷信度效度检验

从统计数据质量角度谈调查问卷的设计质量一、引言从保证统计数据质量的统计工作过程看&#xff0c;统计数据质量可以被划分为统计设计质量、统计调查质量、统计整理质量、统计分析质量以及数据发布传输质量等。统计设计质量是保证统计数据质量的首要环节&#xff0c;在统计数据…

朋友圈加粗字体数字_数字+符码:医院数码导视系统畅想起来

(建筑平面设计图边缘有横竖轴线编码)医院导视系统要做到最简单、最清晰的表达&#xff0c;和谐地融入室内环境并具有一定的弹性&#xff0c;能够适应变化&#xff0c;并适应未来科技的发展&#xff0c;接纳信息化&#xff0c;与管理、服务互联互通。文 | 谷 建 中衡设计集团股…

linux用光盘作yum源实验步骤,Linux使用系统光盘作为YUM源

CentOS 使用方法挂载光盘Linux代码# mkdir /media/cdrom# mount /dev/cdrom /media/cdromyum源文件说明在 /etc/yum.repos.d/ 目录中有CentOS-Base.repo和CentOS-Media.repo两个文件CentOS-Base.repo 记录的是网络上的资源信息CentOS-Media.repo 记录的光盘上的资源信息&#x…

苹果x出现绿线怎么修复_苹果x听筒声音小,苹果x通话声音小怎么办

苹果x听筒声音小&#xff0c;苹果x通话声音小怎么办?相信使用苹果x手机的人大多都会遇见这类情况吧。iPhone手机出现听筒声音小的现象&#xff0c;首先我们要确定出现听筒声音小的故障原因是什么&#xff0c;如果是软件方面的原因造成的&#xff0c;就可以自己调试解决&#x…

wxpython输入框_基于wxPython的GUI实现输入对话框(1)

本文实例为大家分享了基于wxpython的gui实现输入对话框的具体代码&#xff0c;供大家参考&#xff0c;具体内容如下编程时,免不了要输入一些参数等,这时输入对话框就派上用处了:#-*- coding:utf-8 -*-#~ #-------------------------------------------------------------------…

linux grep -11,11个高级Linux字符类和括号表达式的grep命令

你是否曾经在你需要的一种局面搜索字符串&#xff0c;文字或图案的文件里面呢&#xff1f; 如果是&#xff0c;那么grep工具来在这样的情况下派上用场。grep的是为其匹配一个正则表达式搜索行纯文本数据的命令行实用程序。 如果您将分词的grep如 g/re/p&#xff0c;然后grep的含…

tortoisegitpull 并合_tortoiseGIT 本地分支创建合并

接下来是使用tortoiseGIT二、图解使用tortoiseGIT这里只是做一些最基本的功能的演示&#xff1a;创建版本库&#xff0c;提交(commit)文件&#xff0c;推送(push)文件&#xff0c;更新文件&#xff0c;创建分支。简介&#xff1a;git属于分布式版本控制器&#xff0c;其实每个人…

视频图像处理平台对比_对比传统智能结算,戈子视觉结算有了质的改变

相比于使用的RFID原理技术的传统智能结算台&#xff0c;戈子视觉结算台使用的是由戈子科技自主研发的视觉结算系统&#xff0c;其采用的是图像处理技术&#xff0c;通过对餐具扫描识别进行结算。相比于传统智能结算台&#xff0c;其在功能上有很大的提升与创新。戈子视觉结算系…

C语言中字符型和浮点型能否相加,C语言中数据结构的基本类型(整型、浮点型和字符型)...

#include int main(){/**********************************************************// 我们列出的是VS2008的内存占用情况// 一、整型变量的分类&#xff1a;// 1&#xff0c;基本整型&#xff0c;以int表示// 2&#xff0c;短整型&#xff0c;以short int表示&#xff0c;或以…

vs code linux opencv,ubuntu+vscode 测试运行opencv

ubuntuvscode 测试运行opencvubuntuvscode 测试运行opencv之前再ubuntu配置好了opencv,今天测试运行一下。1.创建一个文件夹opencvtest2.在文件夹内打开终端&#xff0c;创建一个cpp文件&#xff0c;再放一张图片。touch mian.cpp3.vim或者文本管理器打开 复制好程序vim命令&am…

wp自定义帖子没标签_拼多多搜索智能推广和自定义推广区别在哪里?

大家好我是牧童&#xff0c;商家在开多多搜索的时候&#xff0c;会发现推广方案中有个智能推广以及自定义推广&#xff0c;很多商家不知道该如何选择&#xff0c;然后就两个计划都建了。之后会发现有的时候智能推广的数据要比自定义推广好&#xff0c;但有的时候智能推广的数据…

python sort 部分元素_Python 简单排序算法-选择、冒泡、插入排序实现

写文章主要是记录自己每天学习的东西&#xff0c;本篇文章主要介绍数据结构中常用的简单的排序算法&#xff0c;虽然这些算法用Python实现起来不是十分的高效&#xff0c;不如c、java之类的运行速度快&#xff0c;应用Python实现主要是为了&#xff1a;1、证明我已经理解了这些…

numpy安装_Python进阶之NumPy快速入门(一)

前言NumPy是Python的一个扩展库&#xff0c;负责数组和矩阵运行。相较于传统Python&#xff0c;NumPy运行效率高&#xff0c;速度快&#xff0c;是利用Python处理数据必不可少的工具。这个NumPy快速入门系列分为四篇&#xff0c;包含了NumPy大部分基础知识&#xff0c;每篇阅读…