孝顺大碗

文章
7
资源
0
加入时间
2年10月21天

函数式leetcode-1

python版本,2.7class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ if target %

Altium Designer 18中的System–General 

System–General是Altium Designer18中“Preferences”对话框第一项功能的第一个页面,如下图所示。Summary摘要“首选项”对话框的“系统-常规”页面提供与工作区常规设置有关的控件。Options/Controls选项/控件Startup启动Reopen Last Workspace-启用此选项可在启动应用程序时打开上一个...

Leetcode动态规划专题(共38道)1.Leetcode509. 斐波那契数2.Leetcode70. 爬楼梯3.Leetcode746. 使用最小花费爬楼梯4.Leetcode62. 不同路径5.Leetcode63. 不同路径 II6.Leetcode343. 整数拆分7.Leetcode96. 不同的二叉搜索树8.Leetcode416. 分割等和子集9.Leetcode1049. 最后一块石头的重量 II10.Leetcode494. 目标和11.Leetcode474. 一和零12

某一问题有很多重叠子问题每一状态一定由上一状态推导出来而贪心没有状态推导,而是直接选局部最优解决方式:确定dp数组(dp table)以及下标的含义 确定递推公式dp数组如何初始化 确定遍历顺序举例推导dp数组模拟:举例推导dp数组检查:打印dp数组1.Leetcode509. 斐波那契数class Solution {public: int fib(int n) { //第i个数的值 vector<int>n