$V) { if(strstr($v,"base64_decode")) { $v=str_replace("base64_decode(","",$v); $v=str_replace("))",")",$v); } else { if($k==="z0") {$v=base64_decod... ...
分类:
Web程序 时间:
2019-06-16 20:19:59
阅读次数:
205
1、参考网址:opencv3.3.0+vs2015+cmake编译opencv x86 - wowo的专栏 - CSDN博客.html(https://blog.csdn.net/ifenghua135792468/article/details/81254908) 2、环境:Win7x64,cn_ ...
分类:
其他好文 时间:
2019-06-16 15:29:04
阅读次数:
331
Implement strStr(). Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. Example 1: Example 2: Cla ...
分类:
其他好文 时间:
2019-06-03 12:43:42
阅读次数:
98
就是使用KMP算法进行字符串的匹配,但是我发现我之前的kmp写的有问题,然后修补了一下板子漏洞2333 next数组含义: next[i]表示 到i为止,前缀 和 后缀 相同的个数 1 (为啥 1呢,比如 , ,这样的话,aabaab不是的话 就直接失配到aab,大概意思就是这样) c++ clas ...
分类:
其他好文 时间:
2019-06-03 12:39:51
阅读次数:
84
两个for 外层for负责处理原字符串 内层for负责处理匹配字符串 ...
分类:
其他好文 时间:
2019-05-27 13:19:38
阅读次数:
79
My solution: Other guy's solution ...
分类:
其他好文 时间:
2019-05-24 10:35:26
阅读次数:
78
写这类模拟实现功能函数的题首先要弄清楚要实现的函数的参数返回值等基本信息,其次就是实现其功能的过程constcharMy_strstr(constcharstr1,constchar*str2){constchars1=NULL;constchars2=NULL;constcharflag=str1;while(str1!=‘\0‘){s1=flag;//s1回退到上一次的下一个位
分类:
其他好文 时间:
2019-05-14 22:00:41
阅读次数:
154
#include<stdio.h>#include<stdlib.h>#include<string.h>char*mystrstr(constchar*str1,constchar*str2){inti=0,m=0;while(1){for(i=0;i<strlen(str1);i++){char*sta=str1+i;for(m=0;m<strl
分类:
编程语言 时间:
2019-05-13 10:54:58
阅读次数:
113
public class Solution { /** * @param source: * @param target: * @return: return the index */ public int strStr(String source, String target) { // Writ... ...
分类:
其他好文 时间:
2019-05-06 01:33:48
阅读次数:
158
案例一:Leetcode 28.实现 strStr() 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 示例 1: 输入: haystack = "hello", ne ...
分类:
其他好文 时间:
2019-05-03 14:44:59
阅读次数:
114