题目描述 Given an input string (s) and a pattern (p), implement regular expression matching with support for '.' and '*'. '.' Matches any single character ...
分类:
其他好文 时间:
2020-03-30 12:48:40
阅读次数:
69
Q:Implement strStr(). Returns the index of the first occurrence of needle in haystack, or 1 if needle is not part of haystack. A:KMP算法 kmp算法的思想就是:在匹配过 ...
分类:
其他好文 时间:
2020-03-23 17:15:17
阅读次数:
59
LeetCode#225-Implement Stack using Queues-用队列实现栈 ...
分类:
其他好文 时间:
2020-03-22 19:32:09
阅读次数:
58
原题链接在这里:https://leetcode.com/problems/implement-rand10-using-rand7/ 题目: Given a function rand7 which generates a uniform random integer in the range 1 ...
分类:
其他好文 时间:
2020-03-21 09:59:59
阅读次数:
57
实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 示例 1: 输入: haystack = "hello", needle = "ll"输 ...
分类:
其他好文 时间:
2020-03-17 08:19:23
阅读次数:
63
Design a stack which supports the following operations. Implement the CustomStack class: CustomStack(int maxSize) Initializes the object with maxSize ...
分类:
其他好文 时间:
2020-03-16 09:53:58
阅读次数:
54
ajax传值时报错:TypeError: 'stepUp' called on an object that does not implement interface HTMLInputElement。 data:{ id:id//可行 id//可行 "id":id//可行},data:id,//这 ...
分类:
Web程序 时间:
2020-03-16 09:15:16
阅读次数:
77
打开题目得到代码: <?php show_source(__FILE__); echo $_GET['hello']; $page=$_GET['page']; while (strstr($page, "php://")) { $page=str_replace("php://", "", $pa ...
分类:
Web程序 时间:
2020-03-15 15:11:32
阅读次数:
110