Miss.Zhou
Miss.Zhou
全部文章
分类
###基本算法(~ o ~)Y(1)
.net(1)
2014多校联合(2)
acm(12)
arcgis(1)
bfs(1)
c#(1)
c++(1)
CF(2)
codeforces(5)
css(1)
dp(27)
git使用(1)
hdu(27)
java(1)
javascript(4)
LeetCode(47)
leetcode (1)
lightoj(1)
oi(1)
php(12)
poj(13)
poj 搜索 算法 acm(1)
poj 算法 线段树 懒惰标记(1)
python(2)
RMQ(1)
socket(1)
splay(1)
tarjan(3)
trie(3)
vmware(1)
web开发(1)
xml(1)
—dp(9)
—STL(2)
———哈希表(2)
———网络流(1)
—二分(2)
—图论(7)
—字符串(4)
—思维题(1)
—搜索(7)
—数据结构(5)
—数论(9)
—贪心(4)
三分(1)
二分图(3)
前端(1)
动态规划(1)
匈牙利算法(1)
博弈(1)
压缩(1)
双连通分量(1)
图论(4)
多校(2)
并查集(1)
并查集 poj(1)
并查集 几何 hdu(1)
并查集 算法(2)
广搜(2)
思维题(1)
拓扑排序(1)
搜素(1)
搜索(1)
操作系统(2)
数据结构(1)
数论 算法(3)
最佳二分匹配(1)
最大二分匹配(2)
最小树形图(1)
未归档(397)
杭电(7)
树型dp(2)
模拟(1)
欧拉回路(1)
正则表达式(1)
深搜(1)
深搜 hdu 算法(1)
矩阵(1)
算法(10)
算法 并查集(1)
线段树(6)
编程(1)
网络流(4)
计算机基础(4)
设计模式(19)
贪心(1)
随笔(1)
题解(8)
验证码(1)
归档
标签
去牛客网
登录
/
注册
MissZhou的小窝
六年磨一剑~
全部文章
(共733篇)
leetcode 5 Longest Palindromic Substring【manacher算法】
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example 1: Input: "babad"...
leetcode
python
最长回文串
manacher
2018-07-06
0
738
leetcode3 Longest Substring Without Repeating Characters【Python刷题】【哈希】
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc...
leetcode
哈希
Python
2018-06-29
0
636
leetcode1 Two sum【基础题】【Python刷题】
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have e...
2018-06-28
0
427
leetcode11 Container With Most Water【挡板存水,双指针】【Python刷题】
因为是搜单调队列搜到这个题 这个就是误导我的博客http://www.cnblogs.com/Phantom01/p/5871977.html 想着单调队列想了两天,又综合了 单调栈优化dp:hdu1506Largest Rectangle in a Histogram &hdu1505ci...
2018-06-27
0
572
leetcode 714. Best Time to Buy and Sell Stock with Transaction Fee【贪心??水题】
Your are given an array of integers prices, for which the i-th element is the price of a given stock on day i; and a non-negative integer fee represen...
2018-06-13
0
541
android studio Unable to resolve dependency for ':app@
网上主要是说 1.修改build.gradle 文件 buildscript { repositories { google() jcenter() } dependencies { ...
2018-05-19
0
498
设计模式——命令模式Command
将一个命令封装为一个对象,从而使你可用不同的请求对客户进行参数化;对请求排队或记录请求日志,以及支持可撤销的操作 优点: 1.比较容易设计出一个命令队列 2.在需要的情况下,可以比较容易地将命令记入日志 3.允许接收请求的一放决定是否要否决请求 4.容易实现对于请求的撤销与重做 5.由于加入新的具体...
设计模式
命令模式
2018-04-25
0
599
设计模式——备忘录模式Memento
算的上是比较简单的设计模式了,然而自己写还是磕磕绊绊 定义:在不破坏封装性的前提下,捕获一个对象的内部状态,并在该对象之外保存这个状态。这样以后就可以将该对象恢复到原先保存的状态。 Originator(发起人)负责创建一个备忘录,用以记录时刻它的内部状态,并可使用备忘录回复内部状态。Origina...
2018-04-24
0
411
设计模式——状态模式State
针对方法过长违背“单一职责原则”和“开放封闭原则”而提出 定义:当一个对象的内在状态改变时允许改变其行为,这个对象看起来是改变其类 主要解决的是当控制一个对象状态转换的条件表达式过于复杂的情况。把状态的判断逻辑转移到表示不同状态的一系列类当中,可以把复杂的判断逻辑简化 好处: 将于特定状态相...
设计模式
状态模式
2018-04-23
0
441
设计模式——桥接模式bridge
将抽象部分和实现分离,使得他们可以独立变化 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 桥...
2018-04-19
0
465
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页