LeetCode 解题报告索引
最近在准备找工作的算法题,刷刷LeetCode,以下是我的解题报告索引,每一题几乎都有详细的说明,供各位码农参考。根据我自己做的进度持续更新中...... 本文地址
LeetCode:Reverse Words in a String
LeetCode:Evaluate Reverse Polish Notation
LeetCode:Binary Tree Postorder Traversal
LeetCode:Binary Tree Preorder Traversal
LeetCode:Copy List with Random Pointer
LeetCode:Palindrome Partitioning
LeetCode:Palindrome Partitioning II
LeetCode:Sum Root to Leaf Numbers
LeetCode:Longest Consecutive Sequence
LeetCode:Binary Tree Maximum Path Sum
LeetCode:Best Time to Buy and Sell Stock
LeetCode:Best Time to Buy and Sell Stock II
LeetCode:Best Time to Buy and Sell Stock III
LeetCode:Populating Next Right Pointers in Each Node
LeetCode:Populating Next Right Pointers in Each Node II
LeetCode:Distinct Subsequences
LeetCode:Flatten Binary Tree to Linked List
LeetCode:Minimum Depth of Binary Tree
LeetCode:Convert Sorted List to Binary Search Tree
LeetCode:Convert Sorted Array to Binary Search Tree
LeetCode:Binary Tree Level Order Traversal II
LeetCode:Construct Binary Tree from Inorder and Postorder Traversal
LeetCode:Construct Binary Tree from Preorder and Inorder Traversal
LeetCode:Maximum Depth of Binary Tree
LeetCode:Binary Tree Zigzag Level Order Traversal
LeetCode:Binary Tree Level Order Traversal
LeetCode:Recover Binary Search Tree
LeetCode:Validate Binary Search Tree
LeetCode:Unique Binary Search Trees II
LeetCode:Unique Binary Search Trees
LeetCode:Binary Tree Inorder Traversal
LeetCode:Reverse Linked List II
LeetCode:Largest Rectangle in Histogram
LeetCode:Remove Duplicates from Sorted List II
LeetCode:Remove Duplicates from Sorted List
LeetCode:Search in Rotated Sorted Array II
LeetCode:Remove Duplicates from Sorted Array II
LeetCode:Minimum Window Substring
Leetcode:Merge Two Sorted Lists
LeetCode:First Missing Positive
LeetCode:Search Insert Position
LeetCode:Search in Rotated Sorted Array
LeetCode:Longest Valid Parentheses
LeetCode:Remove Duplicates from Sorted Array
LeetCode:Reverse Nodes in k-Group
LeetCode:Remove Nth Node From End of List
LeetCode:Letter Combinations of a Phone Number
LeetCode:String to Integer (atoi)
LeetCode:Longest Palindromic Substring
LeetCode:Longest Substring Without Repeating Characters
LeetCode 解题报告索引的更多相关文章
- LeetCode解题报告:Linked List Cycle && Linked List Cycle II
LeetCode解题报告:Linked List Cycle && Linked List Cycle II 1题目 Linked List Cycle Given a linked ...
- poj分类解题报告索引
图论 图论解题报告索引 DFS poj1321 - 棋盘问题 poj1416 - Shredding Company poj2676 - Sudoku poj2488 - A Knight's Jou ...
- leetcode解题报告(2):Remove Duplicates from Sorted ArrayII
描述 Follow up for "Remove Duplicates": What if duplicates are allowed at most twice? For ex ...
- LeetCode解题报告—— Longest Valid Parentheses
Given a string containing just the characters '(' and ')', find the length of the longest valid (wel ...
- LeetCode解题报告—— Search in Rotated Sorted Array & Search for a Range & Valid Sudoku
1. Search in Rotated Sorted Array Suppose an array sorted in ascending order is rotated(轮流,循环) at so ...
- LeetCode解题报告—— 2 Keys Keyboard & Longest Palindromic Substring & ZigZag Conversion
1. Longest Palindromic Substring Given a string s, find the longest palindromic substring in s. You ...
- LeetCode解题报告—— 1-bit and 2-bit Characters & 132 Pattern & 3Sum
1. 1-bit and 2-bit Characters We have two special characters. The first character can be represented ...
- leetCode解题报告5道题(六)
题目一: Longest Substring Without Repeating Characters Given a string, find the length of the longest s ...
- LeetCode解题报告—— Interleaving String
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. Example 1: Input: s1 = ...
随机推荐
- Newtonsoft.Json 把对象转换成json字符串
var resultJson = new { records = rowCount, page = pageindex, //总页数=(总页数+页大小-1)/页大小 total = (rowCount ...
- Java成员的访问权限控制
Java中的访问权限控制包含两个部分: 类的访问权限控制 类成员的访问权限控制 对类来说,访问权限控制修饰符可以是public或者无修饰符(默认的包访问权限): 对于类成员来说,访问权限控制修饰符可以 ...
- NuGet学习笔记3——搭建属于自己的NuGet服务器
文章导读 创建NuGetServer Web站点 发布站点到IIS 添加本地站点到包包数据源 在上一篇NuGet学习笔记(2) 使用图形化界面打包自己的类库 中讲解了如何打包自己的类库,接下来进行最重 ...
- knockoutjs with绑定导致unobtrusive validation失效的问题
如果最初的时候with绑定的对象是空的,那么with绑定内部的unobtrusive validation规则在提交的时候无法生效,无法进行验证. 解决办法: 在提交的时候(或者with绑定的对象非空 ...
- HTTP请求工具类
HTTP请求工具类,适用于微信服务器请求,可以自测 代码; /// <summary> /// HTTP请求工具类 /// </summary> public class Ht ...
- Navicat常用快捷键
[ctrl+q] 打开查询窗口 [ctrl+/] 注释sql语句 [ctrl+shift +/] 解除注释 [ctrl+r] ...
- 新手开发android容易出现的错误(不断更新中...)
才开始开发android app,因为以前一直是java开发,学习也比较容易. 记录下自己开发过程中出现的一些小问题: 静态变量 在开发中,因为习惯性的问题,经常将一些常用数据(如用户信息等)进行st ...
- Linux命令整理中...
Linux命令整理中... 最常用命令(我最近最常用的一般放在前面tipsbychsry) clear 清屏 date 显示日期 cal 显示日历 cal 2014 显示2014年的日历 shutdo ...
- notepad++编译并运行java (自定义包)
最近用Notepad++写汇编,感觉用起来挺顺手,于是想能不能也在这个优秀的编辑器下编写java并编译运行呢,因为每次启动eclipse都要挺长时间,而且eclipse实在太占内存了... 于是各种百 ...
- StackOverflow发布年度开发者调查报告:JavaScript备受欢迎
StackOverflow刚刚发布了年度开发者调查报告,访问了来自173个国家的56033名编程人员,发现几乎所有开发者都精通于JavaScript.具体说来就是,超过85%的全栈开发者.超过90%的 ...