会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
爱学英语的程序媛
博客园
首页
新随笔
联系
订阅
管理
2019年8月15日
(Trie + DP) 623. K Edit Distance
摘要: 思路:前缀树来存储字符串的所有前缀。 1. 状态转移方程: 2. 计算顺序
阅读全文
posted @ 2019-08-15 18:54 爱学英语的程序媛
阅读(446)
评论(0)
推荐(0)
编辑
(DP+二分查找) leetcode 300. Longest Increasing Subsequence, 673. Number of Longest Increasing Subsequence
摘要: 动态规划解法:O(n^2) class Solution { public: int lengthOfLIS(vector<int>& nums) { if(nums.empty()) return 0; int n = nums.size(); int f[n], res = 0; for(int
阅读全文
posted @ 2019-08-15 15:28 爱学英语的程序媛
阅读(235)
评论(0)
推荐(0)
编辑