Skip to content

Commit

Permalink
algorithm 动态规划目录结构设计
Browse files Browse the repository at this point in the history
  • Loading branch information
wangtunan committed Apr 4, 2024
1 parent b4fc9a3 commit e543a5d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/algorithm/base/dynamicProgramming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,27 @@ export const minPathSumDPComp = (grid) => {

## 0-1背包问题

### 方法一:暴力搜索

### 方法二:记忆化搜索

### 方法三:动态规划

## 完全背包问题

### 完全背包问题

### 零钱兑换问题Ⅰ

### 零钱兑换问题Ⅱ

## 编辑距离问题

### 动态规划思路

### 代码实现

### 空间优化

## 参考
* [Hello 算法 动态规划](https://www.hello-algo.com/chapter_dynamic_programming/)

0 comments on commit e543a5d

Please sign in to comment.