[leetcode]51. N-QueensN皇后    Backtracking Hard
[leetcode]52. N-Queens II N皇后 Backtracking Hard
[leetcode]53. Maximum Subarray最大子数组和 Dynamic Programming Easy
[leetcode]54. Spiral Matrix螺旋矩阵 Array Medium
[leetcode]55. Jump Game青蛙跳(能否跳到终点) Greedy Medium
[leetcode]56. Merge Intervals归并区间 Sort Medium
[leetcode]57. Insert Interval插入区间 Sort Hard
[leetcode]58. Length of Last Word最后一个词的长度 String Easy
[leetcode]59. Spiral Matrix II螺旋遍历矩阵2 Array  Medium
     
[leetcode]61. Rotate List旋转链表 Linked List Medium
[leetcode]62. Unique Paths 不同路径 Dynamic Programming Medium
     
[leetcode]64. Minimum Path Sum最小路径和 Dynamic Programming Medium
[leetcode]65. Valid Number 有效数值 String Medium
[leetcode]66. Plus One加一 Array Easy
[leetcode]67. Add Binary 二进制加法 String Easy
     
     
[leetcode]70. Climbing Stairs爬楼梯 Dynamic Programming Easy
     
[leetcode]72. Edit Distance 最少编辑步数 Dynamic Programming Hard
     
     
[leetcode]75. Sort Colors三色排序 Sort Medium
[leetcode]76. Minimum Window Substring最小字符串窗口 Sliding Window Hard
[leetcode]77. Combinations组合 Backtracking Medium
[leetcode]78. Subsets数组子集 Backtracking Medium
     
[leetcode]80. Remove Duplicates from Sorted Array II有序数组去重(单个元素可出现两次) Array Easy
[leetcode]81. Search in Rotated Sorted Array II旋转过有序数组里找目标值II(有重) Array Medium
     
[leetcode]83. Remove Duplicates from Sorted List有序链表去重 Linked List Easy
[leetcode]84. Largest Rectangle in Histogram直方图中的最大矩形 Stack Medium
     
[leetcode]86. Partition List划分链表 Linked List Medium
[leetcode]87. Scramble String字符串树形颠倒匹配 String Medium
[leetcode]88. Merge Sorted Array归并有序数组 Merge Sort Easy
     
[leetcode]90. Subsets II数组子集(有重) Backtracking Medium
[leetcode]91. Decode Ways解码方法    
[leetcode]92. Reverse Linked List II反转链表2 Linked List Medium
     
[leetcode]94. Binary Tree Inorder Traversal二叉树中序遍历 DFS Easy
[leetcode]95. Unique Binary Search Trees II给定节点形成不同BST的集合 Dynamic Programming Medium
[leetcode]96. Unique Binary Search Trees给定节点形成不同BST的个数 Dynamic Programming Medium
[leetcode]97. Interleaving String能否构成交错字符串 Dynamic Programming Medium
[leetcode]98. Validate Binary Search Tree验证二叉搜索树 DFS Medium
[leetcode]99. Recover Binary Search Tree恢复二叉搜索树 DFS Medium
[leetcode]100. Same Tree相同的树 DFS Easy

LeetCode解题录-51~100的更多相关文章

  1. LeetCode解题录-1~50

    [leetcode]1. Two Sum两数之和 Two Pointers, HashMap Easy [leetcode]2. Add Two Numbers两数相加 Math, LinkedLis ...

  2. Leetcode解题思想总结篇:双指针

    Leetcode解题思想总结篇:双指针 1概念 双指针:快慢指针. 快指针在每一步走的步长要比慢指针一步走的步长要多.快指针通常的步速是慢指针的2倍. 在循环中的指针移动通常为: faster = f ...

  3. LeetCode解题报告:Linked List Cycle && Linked List Cycle II

    LeetCode解题报告:Linked List Cycle && Linked List Cycle II 1题目 Linked List Cycle Given a linked ...

  4. LeetCode高频题目(100)汇总-Java实现

    LeetCode高频题目(100)汇总-Java实现       LeetCode高频题目(100)汇总-Java实现 目录 第01-50题 [Leetcode-easy-1] Two Sum [Le ...

  5. leetcode解题报告(2):Remove Duplicates from Sorted ArrayII

    描述 Follow up for "Remove Duplicates": What if duplicates are allowed at most twice? For ex ...

  6. LeetCode 热题 HOT 100(05,正则表达式匹配)

    LeetCode 热题 HOT 100(05,正则表达式匹配) 不够优秀,发量尚多,千锤百炼,方可成佛. 算法的重要性不言而喻,无论你是研究者,还是最近比较火热的IT 打工人,都理应需要一定的算法能力 ...

  7. LeetCode解题记录(贪心算法)(二)

    1. 前言 由于后面还有很多题型要写,贪心算法目前可能就到此为止了,上一篇博客的地址为 LeetCode解题记录(贪心算法)(一) 下面正式开始我们的刷题之旅 2. 贪心 763. 划分字母区间(中等 ...

  8. LeetCode 面试题51. 数组中的逆序对

    面试题51. 数组中的逆序对 题目来源:https://leetcode-cn.com/problems/shu-zu-zhong-de-ni-xu-dui-lcof/ 题目 在数组中的两个数字,如果 ...

  9. leetcode解题:Add binary问题

    顺便把之前做过的一个简单难度的题也贴上来吧 67. Add Binary Given two binary strings, return their sum (also a binary strin ...

随机推荐

  1. 一则ORACLE进程都在但是无法进入实例的问题

    [oracle@localhost ~]$ ps -ef|grep smonoracle 14809 1 0 Sep25 ? 00:13:02 ora_smon_mailp3[oracle@local ...

  2. JS面试Q&A(续2): Rest parameter,Arrow function 等

    rest parameter 和 Destructuring assignment. function fun1(...theArgs) { console.log(theArgs.length);} ...

  3. java异常处理——finally相关

    示例程序1 public class EmbededFinally { public static void main(String args[]) { int result; try { Syste ...

  4. 使用JavaMail创建邮件和发送邮件

    参考https://www.cnblogs.com/xdp-gacl/p/4216311.html,写的真好,知识在于分享,备份留着看 一.RFC882文档简单说明 RFC882文档规定了如何编写一封 ...

  5. git 每次push和pull都需要提交密码

    每次从远程仓库拉代码或者向远程仓库提交代码的时候需要输入密码的解决方法 执行 $ git config --global credential.helper store 结果: 查看C:\用户\用户名 ...

  6. Shiro的认证和权限控制

    权限控制的方式 从类别上分,有两大类: - 认证:你是谁?–识别用户身份. - 授权:你能做什么?–限制用户使用的功能. 权限的控制级别 从控制级别(模型)上分: - URL级别-粗粒度 - 方法级别 ...

  7. solr全文检索实现原理

    本文转自:https://blog.csdn.net/u014209975/article/details/53263642    https://blog.csdn.net/lihang_1994/ ...

  8. java Page分页显示

    //entity层实体类 import java.util.List; //分页展示 //相关属性:当前页,页大小(每页显示的条数),总页数,总条数,数据 //select * from t_user ...

  9. 《2018面向对象程序设计(Java)课程学习进度条》

    周次 (阅读/编写)代码行数 发布博客量/博客评论数量 课堂/课余学习时间(小时) 最满意的编程任务 第一周 50/40 1/0 6/4 九九乘法表 第二周 100/80 1/0 6/8 实验5,6, ...

  10. 深入理解Java虚拟机读书笔记2----垃圾收集器与内存分配策略

    二 垃圾收集器与内存分配策略 1 JVM中哪些内存需要回收?     JVM垃圾回收主要关注的是Java堆和方法区这两个区域:而程序计数器.虚拟机栈.本地方法栈这3个区域随线程而生,随线程而灭,随着方 ...