【LeetCode】按 tag 分类索引 (900题以下)
链表:https://www.cnblogs.com/zhangwanying/p/9797184.html (共34题)
数组:https://www.cnblogs.com/zhangwanying/p/9610923.html (共139题)
树:https://www.cnblogs.com/zhangwanying/p/6753328.html (共94题)
哈希表:https://www.cnblogs.com/zhangwanying/p/9886262.html (共88题)
DP上篇:https://www.cnblogs.com/zhangwanying/p/9511565.html (600题以前,共75题)
DP下篇:https://www.cnblogs.com/zhangwanying/p/9567473.html (600题以后,共39题)
字符串 string:https://www.cnblogs.com/zhangwanying/p/9885334.html (共112题)
深搜 DFS:https://www.cnblogs.com/zhangwanying/p/9885372.html (共85题)
回溯法 backtracking:https://www.cnblogs.com/zhangwanying/p/9886305.html (共39题)
广搜 BFS:https://www.cnblogs.com/zhangwanying/p/9706908.html(共 43 题)
数学:https://www.cnblogs.com/zhangwanying/p/9790007.html (共106题)
堆 heap:https://www.cnblogs.com/zhangwanying/p/9357141.html (共31题)
栈 stack:https://www.cnblogs.com/zhangwanying/p/9886577.html (共40题)
队列 queue:https://www.cnblogs.com/zhangwanying/p/9886581.html(共8题)
二分法 binary search:https://www.cnblogs.com/zhangwanying/p/9886707.html (共58题)
双指针 two pointers:https://www.cnblogs.com/zhangwanying/p/9886712.html (共47题)
贪心 greedy:https://www.cnblogs.com/zhangwanying/p/9886719.html (共38题)
位运算 bit manipulation:https://www.cnblogs.com/zhangwanying/p/9886589.html(共32题)
排序 sort:https://www.cnblogs.com/zhangwanying/p/9914941.html (共20题)
分治法 divide and conquer:https://www.cnblogs.com/zhangwanying/p/9964136.html (共17题)
图论 graph:https://www.cnblogs.com/zhangwanying/p/9964164.html (共20题)
设计题 design:https://www.cnblogs.com/zhangwanying/p/9886723.html (共38题)
recursion: https://www.cnblogs.com/zhangwanying/p/10284615.html(共11题)
未分类的题目收录:https://www.cnblogs.com/zhangwanying/p/10016508.html
【小而美的算法】
并查集 union find: https://www.cnblogs.com/zhangwanying/p/9964303.html(共16题)
前缀树 trie:https://www.cnblogs.com/zhangwanying/p/9964323.html(共14题)
二分查找树 binary search tree:https://www.cnblogs.com/zhangwanying/p/9964348.html(共 14 题)
线段树 segment tree:https://www.cnblogs.com/zhangwanying/p/9964023.html (共 9 题)
树状数组 binary indexed tree:https://www.cnblogs.com/zhangwanying/p/9964023.html(共 5 题)
随机化算法 random:https://www.cnblogs.com/zhangwanying/p/9964660.html(共6题)
一种博弈思路 minimax:https://www.cnblogs.com/zhangwanying/p/9964702.html(共5题)
拓扑排序 topological sort:https://www.cnblogs.com/zhangwanying/p/9964691.html(共5题)
智力题 brainteser:https://www.cnblogs.com/zhangwanying/p/9964669.html(共3题)
拒绝采样 rejection sampling: https://www.cnblogs.com/zhangwanying/p/9964477.html (共2题)
水塘抽样 reservoir sampling: https://www.cnblogs.com/zhangwanying/p/9964477.html (共2题)
几何学 geometry:https://www.cnblogs.com/zhangwanying/p/9964512.html(共2题)
动态规划之股票系列特别篇: https://www.cnblogs.com/zhangwanying/p/9360841.html
【LeetCode】按 tag 分类索引 (900题以下)的更多相关文章
- Leetcode按Tag刷题
按照Leetcode的Tag来刷题,从easy到hard刷题 关于如何让Leetcode按难易程度排序,可按以下步骤: 1. 进入Leetcode后,点击code 2.点击code后,可查看所有题目, ...
- 开源 iOS 项目分类索引大全 - 待整理
开源 iOS 项目分类索引大全 GitHub 上大概600个开源 iOS 项目的分类和介绍,对于你挑选和使用开源项目应该有帮助 系统基础库 Category/Util sstoolkit 一套Cate ...
- LeetCode:颜色分类【75】
LeetCode:颜色分类[75] 题目描述 给定一个包含红色.白色和蓝色,一共 n 个元素的数组,原地对它们进行排序,使得相同颜色的元素相邻,并按照红色.白色.蓝色顺序排列. 此题中,我们使用整数 ...
- 【LeetCode】Recursion(共11题)
链接:https://leetcode.com/tag/recursion/ 247 Strobogrammatic Number II (2019年2月22日,谷歌tag) 给了一个 n,给出长度为 ...
- LeetCode 题目总结/分类
LeetCode 题目总结/分类 利用堆栈: http://oj.leetcode.com/problems/evaluate-reverse-polish-notation/ http://oj.l ...
- Leetcode春季打卡活动 第二题:206. 反转链表
Leetcode春季打卡活动 第二题:206. 反转链表 206. 反转链表 Talk is cheap . Show me the code . /** * Definition for singl ...
- Leetcode 春季打卡活动 第一题:225. 用队列实现栈
Leetcode 春季打卡活动 第一题:225. 用队列实现栈 Leetcode 春季打卡活动 第一题:225. 用队列实现栈 解题思路 这里用了非常简单的思路,就是在push函数上做点操作,让队头总 ...
- 【LeetCode】未分类(tag里面没有)(共题)
[334]Increasing Triplet Subsequence (2019年2月14日,google tag)(greedy) 给了一个数组 nums,判断是否有三个数字组成子序列,使得子序列 ...
- LeetCode分类-前400题
1. Array 基础 27 Remove Element 26 Remove Duplicates from Sorted Array 80 Remove Duplicates from Sorte ...
随机推荐
- [CSP-S模拟测试]:题(DP+数学)
题目描述 出个题就好了.这就是出题人没有写题目背景的原因.你在平面直角坐标系上.你一开始位于$(0,0)$.每次可以在上/下/左/右四个方向中选一个走一步.即:从$(x,y)$走到$(x,y+1),( ...
- 接上SQL SERVER的锁机制(一)——概述(锁的种类与范围)
二.完整的锁兼容性矩阵(见下图) 对上图的是代码说明:见下图. 三.下表列出了数据库引擎可以锁定的资源. 名称 资源 缩写 编码 呈现锁定时,描述该资源的方式 说明 数据行 RID RID 9 文件编 ...
- SDK使用NinePatch(.9)资源
.9资源是啥? .9图是一种可以拉伸的图片格式,当你把它用作背景图时,android系统会根据实际情况来拉伸图片资源.比如按钮的背景必须根据上面显示文字的长短作拉伸.NinePatch就是额外包含了一 ...
- Linux中的NetworkManager网络管理
转载关于 NM_CONTROLLED和Network Manager Redhat在RHEL 6(Redhat Enterprise Linux),上搞了一个 Network manger 服务(同样 ...
- 类Vector
/* * Vector的特有功能 * * Vector出现较早,比集合更早出现 * * 1:添加功能 * public void addElement(Object obj);//用add()替代 * ...
- [Forward]C++ Properties - a Library Solution
orig url: https://accu.org/index.php/journals/255 roperties are a feature of a number of programming ...
- laravel使用artisan报错SQLSTATE[42S02]: Base table or view not found: 1146
说明你在应用初始化阶段使用到了数据库层面的东西,然而当时数据库不存在这个表/字段,所以会报错 需要在初始化比如 config 目录配置中,使用了数据库,在使用前需要添加一层判断,如果不存在 你需要用到 ...
- 【Linux】limits.conf 不重启就生效或者不生效的原因
前阵子,我要用到使LInux的文件打开数为65534个,而且需要永久生效,于是将配置写到了: vim /etc/security/limits.conf * soft nofile 65534* ha ...
- mooc-IDEA live template--006
十二.IntelliJ IDEA -live template 以定时器为例: 1.创建一个Template Group... 2.在创建的Template Group下面,创建一个Live Temp ...
- Proteus报错处理经验:power rails ‘GND’ and 'VCC/VDD' are interconnected in net VCC
1 前言 初学Proteus,画好原理图后遇到了power rails 'GND' and 'VCC/VDD' are interconnected in net VCC的报错. 尝试了网上的解决办法 ...