实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 当 needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。 对于 ...
分类:
其他好文 时间:
2018-11-22 00:02:46
阅读次数:
194
加密术 Time Limit: 1000 ms Memory Limit: 65536 KiB Problem Description 加密技术是一种常用的安全保密手段,利用加密技术可以把重要的数据变成经过加密变成乱码传送,到达目的地后再利用解密手段还原。现在我们发明了一种新的加密技术,即通过在一个 ...
分类:
编程语言 时间:
2018-11-17 13:12:08
阅读次数:
152
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 ...
分类:
其他好文 时间:
2018-10-06 22:10:36
阅读次数:
172
class Solution { public int strStr(String haystack, String needle) { int i = 0, j = 0; int a = haystack.length(); int b = needle.length(); if(a<b) ret ...
分类:
其他好文 时间:
2018-10-06 00:04:35
阅读次数:
185
一: list 1 基本用法 二: 字典 1 三: 集合 ...
分类:
编程语言 时间:
2018-10-01 22:36:50
阅读次数:
227
<?php // 处理异常逻辑if (!curl_errno($ch)) { if (200 == curl_getinfo($ch, CURLINFO_HTTP_CODE)) { $this->response == $response; if (strstr($response, '"resul ...
分类:
Web程序 时间:
2018-09-29 00:44:22
阅读次数:
376
实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 示例 1: 示例 2: 说明: 当 needle 是空字符串时,我们应当返回什么值呢?这 ...
分类:
其他好文 时间:
2018-09-26 17:15:45
阅读次数:
145
思路 如果不用python自带的索引功能,就要遍历的时候进行比较,用切片会很方便 可以偷个懒用python的索引功能 代码 改进 index()方法会抛出异常,该用find()方法就不用考虑,find()方法失败的时候会返回 1 ...
分类:
编程语言 时间:
2018-09-22 12:41:46
阅读次数:
161