
C#
文章平均质量分 80
Numlogn
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Dynamic programming - LSC problem
LSC Problem using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication17 { class P原创 2017-02-17 17:44:44 · 388 阅读 · 0 评论 -
Dynamic programming - 最长单调递增子串问题
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LPS { class Program { static void Main(string[] args)原创 2017-02-18 12:01:37 · 463 阅读 · 0 评论 -
Dynamic programming - 最长回文子序列问题
最长回文子序列问题 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace palindrome { class Program { static void Main(原创 2017-02-19 14:11:02 · 570 阅读 · 0 评论 -
DivideAndConquer-最大子数组问题
串行策略 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Maximum_subarray { class Program { static void Main原创 2017-03-05 20:46:32 · 403 阅读 · 0 评论