前端与算法 leetcode 28.实现 strStr() 题目描述 "28.移除元素" 概要 这道题的意义是实现一个api,不是调api,尽管很多时候api的速度比我们写的快(今天这个我们可以做到和indexOf一样快),但我们还是要去了解api内实现的原理,在我们所熟悉的v8引擎中,indexO ...
分类:
编程语言 时间:
2019-10-25 09:48:20
阅读次数:
76
现实中碰到很多需要随机抽样的问题,这也是算法工程师面试中常见的题型,特意记录在这里。下面以几个例题为例,展开随机抽样问题的解决方案。 [leetcode]470.Implement Rand10() Using Rand7() 已提供一个Rand7()的API可以随机生成1到7的数字,使用Rand7 ...
分类:
其他好文 时间:
2019-10-20 11:02:34
阅读次数:
103
In this page, I create a class Binary Heap to implement priority queue in C++ and Python. The data structure is same in both programing language as be... ...
分类:
其他好文 时间:
2019-10-17 12:13:00
阅读次数:
76
Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*'. The matching should cover the entire in ...
分类:
其他好文 时间:
2019-10-17 01:31:57
阅读次数:
77
视频 【泡泡机器人公开课】第八课:MEMS IMU的入门与应用-胡佳兴 标定论文 A robust and easy to implement method for IMU calibration without external equipments 标定demo https://bitbucke ...
分类:
其他好文 时间:
2019-10-15 16:18:29
阅读次数:
112
strstr(T,S) 函数: 这是一个字符串处理函数,用于判断字符串S是否是字符串T的子串。如果是,则该函数返回S在T中首次出现的地址;否则,返回NULL。 头文件:#include <string.h> 函数原型:char *strstr(const char *str1, const char ...
分类:
编程语言 时间:
2019-10-06 11:09:39
阅读次数:
80
独家秘笈!看下如何一键优化Oracle数据库复杂sql,DBA必备 原创 波波说运维 2019-09-30 00:03:00 概述 It is very easy for us to implement sql tuning by toad. We need to do is just give c ...
分类:
数据库 时间:
2019-10-05 12:30:47
阅读次数:
259
You have decided to implement the principle of least privilege and separation of duties. Which two actions must you take? A)Grant SYSOPER to applicati ...
分类:
其他好文 时间:
2019-09-30 15:06:58
阅读次数:
99
Nonrecursive Traversal of Binary Tree First I wanna talk about why should we use <code>Stack</code> to implement this algorithm. I think it is due to ...
分类:
编程语言 时间:
2019-09-27 22:52:35
阅读次数:
125
KMP一个非常经典的字符串模式匹配算法 先来说说 KMP 的历史吧。 一、背景 KMP算法是一种改进的字符串匹配算法,由D.E.Knuth,J.H.Morris和V.R.Pratt提出的,因此人们称它为克努特—莫里斯—普拉特操作(简称KMP算法)。KMP算法的核心是利用匹配失败后的信息,尽量减少模式 ...
分类:
其他好文 时间:
2019-09-26 21:06:38
阅读次数:
89