Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guodongxiaren/oj
https://github.com/guodongxiaren/oj
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/guodongxiaren/oj
- Owner: guodongxiaren
- Created: 2014-09-11T00:43:01.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-05-12T16:03:10.000Z (over 4 years ago)
- Last Synced: 2023-08-17T11:48:33.549Z (about 1 year ago)
- Language: C++
- Size: 80.1 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 55
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Hello ACM
=========## 动态规划
### 三要素
* 状态
* 阶段
* 决策### 分类
* 线性DP
* 树形DP
* ...### 经典模型
* LCS(最长公共子序列)
* LIS(最长递增子序列)
* 数塔(树形DP)
* 背包