字符串倒序查找字串
时间:11-27
来源:互联网
点击:
- #include.h>
- #include
- char*myStrrstr(constchar*haystack,constchar*needle);
- int
- main(void)
- {
char*s="hello world"; char*t="ll"; char*r=myStrrstr(s,t); printf(r); return 0; - }
- char*myStrrstr(constchar*haystack,constchar*needle)
- {
unsigned int i; unsigned int hay_len,need_len; constchar*p; if(NULL==haystack||NULL==needle) returnNULL; hay_len=strlen(haystack); need_len=strlen(needle); if(need_len==0) return(char*)haystack; if(hay_len< need_len) returnNULL; p=haystack+hay_len-need_len; while(p>=haystack) { for(i=0;i< need_len;i++) if(p[i]!=needle[i]) gotonext; return(char*)p; next: p--; } returnNULL; - }
字符串字 相关文章:
- C语言中字符串与字符数组分析(12-01)
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)