[LeetCode] questions conclusion_ Dynamic Programming
Questions:
[LeetCode] 198. House Robber _Easy tag: Dynamic Programming
[LeetCode] 221. Maximal Square _ Medium Tag: Dynamic Programming
[LeetCode] 62. Unique Paths_ Medium tag: Dynamic Programming
[LeetCode] 64. Minimum Path Sum_Medium tag: Dynamic Programming
[LeetCode] 72. Edit Distance_hard tag: Dynamic Programming
[LintCode] 394. Coins in a Line_ Medium tag:Dynamic Programming_博弈
[LintCode] 395. Coins in a Line 2_Medium tag: Dynamic Programming, 博弈
[LeetCode] 877. Stone Game == [LintCode] 396. Coins in a Line 3_hard tag: 区间Dynamic Programming, 博弈
[LeetCode] 312. Burst Balloons_hard tag: 区间Dynamic Programming
[LeetCode] 53. Maximum Subarray_Easy tag: Dynamic Programming
[LeetCode] 152. Maximum Product Subarray_Medium tag: Dynamic Programming
[LeetCode] 674. Longest Continuous Increasing Subsequence_Easy Dynamic Programming
[LeetCode] 121. Best Time to Buy and Sell Stock_Easy tag: Dynamic Programming
[LeetCode] 122. Best Time to Buy and Sell Stock II_Easy tag: Dynamic Programming
[LeetCode] 120. Triangle _Medium tag: Dynamic Programming
[LeetCode] 63. Unique Paths II_ Medium tag: Dynamic Programming
[LeetCode] 70. Climbing Stairs_ Easy tag: Dynamic Programming
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
[LeetCode] 45. Jump Game II_ Hard tag: Dynamic Programming
[LeetCode] 132. Palindrome Partitioning II_ Hard tag: Dynamic Programming
[LeetCode] 139. Word Break_ Medium tag: Dynamic Programming
[LintCode] 77. Longest common subsequences_ Medium tag: Dynamic Programming
[LeetCode] 115. Distinct Subsequences_ Hard tag: Dynamic Programming
[LeetCode] 97. Interleaving String_ Hard tag: Dynamic Programming
[LeetCode] questions conclusion_ Dynamic Programming的更多相关文章
- [LeetCode] questions conclusion_ Binary Search
Binary Search T(n) = T(n/2) + O(1) => T(n) = O(lg n) proof: 如果能用iterable , 就用while loop, 可以防 ...
- LeetCode with Python -> Dynamic Programming
198. House Robber You are a professional robber planning to rob houses along a street. Each house ha ...
- [LeetCode] 139. Word Break_ Medium tag: Dynamic Programming
Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, determine ...
- [LeetCode] 45. Jump Game II_ Hard tag: Dynamic Programming
Given an array of non-negative integers, you are initially positioned at the first index of the arra ...
- [LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
Given an array of non-negative integers, you are initially positioned at the first index of the arra ...
- [LeetCode] 63. Unique Paths II_ Medium tag: Dynamic Programming
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The ...
- [LeetCode] 121. Best Time to Buy and Sell Stock_Easy tag: Dynamic Programming
Say you have an array for which the ith element is the price of a given stock on day i. If you were ...
- [LeetCode] 53. Maximum Subarray_Easy tag: Dynamic Programming
Given an integer array nums, find the contiguous subarray (containing at least one number) which has ...
- [LeetCode] 312. Burst Balloons_hard tag: 区间Dynamic Programming
Given n balloons, indexed from 0 to n-1. Each balloon is painted with a number on it represented by ...
随机推荐
- java(6) ArrayList源码
系统环境: JDK 1.7 成员变量 //默认的初始化数组大小 private static final int DEFAULT_CAPACITY = 10; //空的对象数组 private sta ...
- LeetCode 37 Sudoku Solver(求解数独)
题目链接: https://leetcode.com/problems/sudoku-solver/?tab=Description Problem : 解决数独问题,给出一个二维数组,将这个数独 ...
- sencha touch NavigationView
NavigationView 是官方根据Container控件扩展而来的,由一个导航栏和一个card组成,具备导航和返回时自动销毁当前界面的功能,非常适合新手使用. 其中导航栏的代码如下: Ext.d ...
- mint下截图工具shutter的安装和使用设置
[原创作品,技术交流.允许转载,转载时请务必以超链接形式标明文章原始出处 .作者信息.如有错误,请指正] /** author: lihaibo date: 1/25/2016 */ 今天安装了双系统 ...
- 利用Metrics+influxdb+grafana构建监控平台(转)
转自http://www.jianshu.com/p/fadcf4d92b0e 这里再配合Influxdb和Grafana可以构建一个非常漂亮的实时监控界面. Grafana监控界面 采集数据(Met ...
- C# .ToString()格式化 常用数据转化小总结
1.百分比 ; ; string p = ((double)i / j).ToString("P");//结果:200.00% p = string.Format("{0 ...
- Unity3D笔记 英保通八 关节、 布料、粒子系统
一.关节1.1..链条关节 Hinge joint :他可以模拟两个物体间用一根链条连接在一起的情况,能保持两个物体在一个固定距离内部相互移动而不产生作用力,但是达到固定距离后就会产生拉力 1.2.. ...
- 移动端app跳转百度地图
http://lbsyun.baidu.com/index.php?title=uri/guide/helloworld(百度地图调起URI API)开发者只需按照接口规范构造一条标准的URI,便可在 ...
- Rsync数据同步应用指南
1.软件简介 Rsync 是一个本地或远程数据同步工具,基于RSync算法,这个算法是澳大利亚人Andrew Tridgell发明的:可通过 LAN/WAN 快速同步多台主机间的文件.Rsync 本来 ...
- Android-Broadcast(广播)
1.四大组件之BroadcastReceiver (1)Broadcast(广播)--一种广泛运用在应用程序之间传输信息的机制 (2)BroadcastReceiver(广播接受者)--是对发送过 ...