题目: For a given source string and a target string, you should output the first index(from 0) of target string in source string. If target does not exi ...
分类:
其他好文 时间:
2017-06-06 23:26:24
阅读次数:
210
#include<stdio.h> #include<string.h> /* char s1[]="I am a student"; char s2[20]="teacher"; char s3[]="student"; int result; char s4[20],*p; 1.串的长度 int ...
分类:
编程语言 时间:
2017-05-31 10:16:59
阅读次数:
184
C小作业,通过这个深刻了解到 字符串指针只是指向字符串中的第一个字符。同时学习了strstr,strcpy,strncpy,strcat等函数的使用。 ...
分类:
其他好文 时间:
2017-05-28 18:54:36
阅读次数:
243
1 public class Solution { 2 public int strStr(String haystack, String needle) { 3 int big = haystack.length(); 4 int sub = needle.length(); 5 if(big== ...
分类:
其他好文 时间:
2017-05-06 23:06:58
阅读次数:
224
热身~ 第一题H7N9 读了题,发现是个大水题。把读入的字符是大写的转换为了小写的。然后用strstr找是否有”h7n9“子串。 測试无误,交一发,WA了。我居然在想是不是strstr函数的问题。把strstr手动实现,又WA,最后又换了一种思路,把“h7n9”的四种组合存二维数组 里,"h7n9" ...
分类:
其他好文 时间:
2017-05-06 21:48:37
阅读次数:
132
php中的函数很多,字符串函数也非常多,下面总结几个常用到的字符串函数。记录下来为以后翻阅。 1.字符串组合/连接 a>implode() 将一个一维数组的值转化为字符串 b>join() 别名 implode() 2.字符串分割 a>explode() 将字符串按照指定的分隔符组合成一个数组。数组 ...
分类:
Web程序 时间:
2017-05-02 11:52:19
阅读次数:
180
1、 输入多组数据的时候 while(scanf("%s",s)!=EOF) while(gets(s)!=NULL) 用gets和scanf不一样。要注意 2、 输入字符串的时候 scanf("%s",s); scanf遇到空格会自己主动停止输入 scanf输入完字符串之后要记得推断是否加getc ...
分类:
其他好文 时间:
2017-04-27 13:58:52
阅读次数:
160
https://leetcode.com/problems/implement-strstr/#/description ...
分类:
其他好文 时间:
2017-04-26 17:44:18
阅读次数:
140
【题目描述】Foragivensourcestringandatargetstring,youshouldoutputthefirstindex(from0)oftargetstringinsourcestring.Iftargetdoesnotexistinsource,justreturn-1.对于一个给定的source字符串和一个target字符串,你应该在source字符串中找出target字符串出现的第一个位置(..
分类:
其他好文 时间:
2017-04-25 21:25:32
阅读次数:
155
1.strstr(字符串查找) 对于一个给定的 source 字符串和一个 target 字符串,你应该在 source 字符串中找出 target 字符串出现的第一个位置(从0开始)。如果不存在,则返回 -1 class Solution { /** * Returns a index to th ...
分类:
其他好文 时间:
2017-04-24 14:06:42
阅读次数:
220