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 62 Unique Paths 62 Unique Paths 62 Unique Paths 【走格子 简单dp】
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any ...
leetcode
dp
2018-10-28
0
590
leetcode61Rotate List【将列表后k个元素移动到前面】
Given a linked list, rotate the list to the right by k places, where k is non-negative. Example 1: Input: 1->2->3->4->5->NULL, k = 2...
2018-10-28
0
466
leetcode 59. Spiral Matrix II【蛇形填数】
Given a positive integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. Example: Input: 3 Output: [ [ 1, 2, 3 ], ...
leetcode
2018-10-27
0
696
Redis常用操作
Redis一共五种数据类型:string hash list set zset Redis支持数据的持久化,可以将内存中的数据保存在磁盘中,重启的时候可以再次加载进行使用。 Redis不仅仅支持简单的key-value类型的数据,同时还提供list,set,zset,hash等数据结构的存...
2018-10-25
0
480
leetcode56. Merge Intervals【贪心】
Given a collection of intervals, merge all overlapping intervals. Example 1: Input: [[1,3],[2,6],[8,10],[15,18]] Output: [[1,6],[8,10],[15,18]] Exp...
2018-10-25
0
569
leetcode 55. Jump Game【贪心】
https://leetcode.com/problems/jump-game/description/ Given an array of non-negative integers, you are initially positioned at the first index of the ...
leetcode
贪心
2018-10-25
0
577
leetcode 54Spiral Matrix【贪吃蛇】
不懂自己这么水的题居然WA了这么多次 而且 为啥要设置flag 反正都是顺时针 自己写的 class Solution { public: vector<int> spiralOrder(vector<vector<int>>& matri...
leetcode
2018-10-24
0
640
docker-compose demo1【网页计数器】
感觉只有自己写个demo一行行看才明白啊 Compose 项目是 Docker 官方的开源项目,负责实现对 Docker 容器集群的快速编排。 Compose 项目由 Python 编写,实现上调用了 Docker 服务提供的 API 来对容器进行管理。因此,只要所操作的平台支持 Docker ...
2018-10-23
0
596
leetcode 49. Group Anagrams【素数相乘处理字符串哈希】
https://leetcode.com/problems/group-anagrams/description/ Given an array of strings, group anagrams together. Example: Input: ["eat", &q...
2018-10-23
0
761
leetcode 48. Rotate Image【旋转90】
https://leetcode.com/problems/rotate-image/description/ You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (cloc...
leetcode
2018-10-22
0
538
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页