题目: Implement strStr(). Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. 返回haystack中第一次出现针的索引, ...
分类:
其他好文 时间:
2018-09-17 17:45:33
阅读次数:
128
想起来记录一下自己对PHP的优化思路 针对Nginx和 PHP-FPM进行优化 首先应该分为代码层面、配置层面、架构层面 代码层面 参见了https://segmentfault.com/a/1190000009442044 这篇文章 1.减少PHP代码量 显而易见,PHP作为解释性语言,每次执行都 ...
分类:
Web程序 时间:
2018-09-11 21:15:14
阅读次数:
179
String相等 == 只是比较引用值就是地址如果是new String的话 例如substring跟其他的比较就要用str.equal() ...
分类:
其他好文 时间:
2018-09-07 23:53:21
阅读次数:
209
实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 示例 1: 示例 2: 说明: 当 needle 是空字符串时,我们应当返回什么值呢?这 ...
分类:
其他好文 时间:
2018-08-24 23:36:23
阅读次数:
317
原文网址:https://www.cnblogs.com/shike8080/articles/6549339.html #pragma once#include <iostream>#include <windows.h>#include <wininet.h> using namespace s ...
分类:
编程语言 时间:
2018-08-24 13:21:39
阅读次数:
1759
28. 实现strStr() https://leetcode-cn.com/problems/implement-strstr/description/ 竟然是KMP算法 自己写的: KMP算法: ...
分类:
其他好文 时间:
2018-08-17 23:25:30
阅读次数:
178
实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 示例 1: 输入: haystack = "hello", needle = "ll" ...
分类:
其他好文 时间:
2018-08-08 00:57:40
阅读次数:
146
Implement strStr function in O(n + m) time. strStr return the first index of the target string in a source string. The length of the target string is ...
分类:
其他好文 时间:
2018-08-06 14:40:35
阅读次数:
162
#define _CRT_SECURE_NO_WARNINGS #include #include #include void main71() { char a[] = "i am a student"; char b[64]; int i = 0; for (i=0; *(a+i) != '\0... ...
分类:
其他好文 时间:
2018-08-03 22:42:14
阅读次数:
174
实现 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 1。 示例 1: 输入: haystack = "hello", needle = "ll" 输出: 2 示例 2 ...
分类:
其他好文 时间:
2018-07-30 22:39:33
阅读次数:
174