Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lijiakof committed Mar 7, 2021
1 parent e302217 commit 2b397f7
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
* [Event Loop](share/js-eventloop.md)
* [WEB 前端性能优化实战](share/web-front-performance.md)
* [斐波那契数列](share/fibonacci.md)
* [背包问题](share/knapsack.md)

## 技巧
* [如何垂直居中](share/css-vetically.md)
Expand Down
Binary file added babel.sketch
Binary file not shown.
Binary file modified frontend-book.sketch
Binary file not shown.
Binary file added ipfs.sketch
Binary file not shown.
7 changes: 7 additions & 0 deletions share/knapsack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 背包问题
背包问题是一个非常经典的计算机算法问题,我们可以通过各种算法来实现它,但是如何快速准确的得到解,是我们需要研究的问题。话不多说先看问题:有 N 件物品和一个容器为 V 的背包。放入第 i 件物品耗费的费用是 Ci,得到的 价值是 Wi。求解将哪些物品装入背包可使价值总和最大。

## 分析问题


## 递归
7 changes: 0 additions & 7 deletions share/lakka.md

This file was deleted.

Binary file added wallet.sketch
Binary file not shown.

0 comments on commit 2b397f7

Please sign in to comment.