A Sort Of A Blog
旧游无处不堪寻,无寻处,惟有少年心
数据库索引
概述 索引是辅助数据库存储引擎高效获取数据的数据结构。索引是在存储引擎中实现的,每种存储引擎的索引都不完全相同,并且每种存储引擎也不一定支持所有索引类型。...
2022-05-08
LeetCode-Regular Expression Matching
题目 Given an input string s and a pattern p, implement regular expression matc...
2022-03-14
LeetCode-Longest Palindromic Substring
题目 Given a string s, return the longest palindromic substring in s. Example: ...
2022-03-13
LeetCode-Median of Two Sorted Arrays
题目 There are two sorted arrays nums1 and nums2 of size m and n respectively. ...
2022-03-12
LeetCode-Longest Substring Without Repeating Characters
题目 Given a string, find the length of the longest substring without repeating...
2022-03-11
LeetCode-Add Two Numbers
题目 You are given two non-empty linked lists representing two non-negative int...
2022-03-10
LeetCode-Two Sum
题目 Given an array of integers, return indices of the two numbers such that th...
2022-03-09
LeetCode
Practice Makes Perfect 目前打算今年要刷完 LeetCode 中的 HOT 100。
2022-03-08
设计模式-访问者
访问者模式(Visitor Pattern)是一种行为型设计模式,它能将算法与其所作用的对象隔离开来。 解释 访问者模式建议将新行为放入一个名为访问者的独...
2022-03-07
设计模式-模板方法
模板方法模式(Template Method Pattern)是一种行为型设计模式,它在超类中定义了一个算法的框架,允许子类在不修改结构的情况下重写算法的...
2022-03-06