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 92. Reverse Linked List II
https://leetcode.com/problems/reverse-linked-list-ii/ 难度还好,和之前的反转链表没本质区别,把头尾拆出来即可 关于stack存储,和汪童鞋中午吃饭讨论说起来 存listnode肯定更好一些 Reverse a linked list fro...
2019-06-09
0
687
93. Restore IP Addresses
https://leetcode.com/problems/restore-ip-addresses/ 貌似这个题是去年年底刷了,半天没写出来搁浅了? WA了一次 没考虑0000 TLE了一次应该事先判断长度 Given a string containing only digits, re...
2019-06-08
0
593
初试Angular
整理Angular官方文档https://angular.cn/tutorial/ 运行 CLI 命令 ng new新建一个工作区 ng new angular-tour-of-heroes 选择npm包和其他依赖项(上下键选择,而不是傻等着!) 会创建下列工作区和初始项目的文件: ...
2019-04-22
0
714
leetcode 109. Convert Sorted List to Binary Search Tree【给定有序数组构建二叉树】
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. For this problem, a height-balanced bin...
LeetCode
BST
2019-03-11
0
558
leetcode103. Binary Tree Zigzag Level Order Traversal【打印二叉树】
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
2019-03-07
0
504
leetcode 95. Unique Binary Search Trees II【求二叉搜索树的各种具体情况】
https://leetcode.com/problems/unique-binary-search-trees-ii/ Given an integer n, generate all structurally unique BST's (binary search trees) that st...
2018-12-18
0
683
leetcode 96. Unique Binary Search Trees【DP数二叉搜索树】
https://leetcode.com/problems/unique-binary-search-trees/ Given n, how many structurally unique BST's (binary search trees) that store values 1 ... n...
2018-12-17
0
594
leetcode 94. Binary Tree Inorder Traversal中序遍历
我特么要菜哭了 这玩意怎么能卡这么久 Example: Input: [1,null,2,3] 1 \ 2 / 3 Output: [1,3,2] Follow up: Recursive solution is trivial, could you...
leetcode
中序遍历
2018-12-17
0
654
已知random7求random10
头条一面 ,其实之前是看过的,宇宙条问的太太太难了QAQ 这样想 random7()返回的1,2,3,4,5,6,7 经过加减乘除这类的运算至少应该是扩充到比10大的数据范围,才能进行取模运算 那么应该想到7*(random7()-1)+random7() 可以扩充到1-49而且是等概率的 ...
2018-11-13
0
652
Redis实现购物网站
1.登录与Cookie缓存 使用一个hash存储登录cookie令牌与已经登录用户之间的映射,检查用户是否已经登录,返回ID def check_token(conn, token): return conn.hget('login:', token)#hget 获取哈希值key的va...
2018-11-07
0
808
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页