Skip to content

Commit

Permalink
更新了Linux和Django部分的文档
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfrued committed May 30, 2019
1 parent 8230632 commit 75ecfc4
Show file tree
Hide file tree
Showing 4 changed files with 365 additions and 199 deletions.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion Day16-20/Python语言进阶.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@
- 常用算法:

- 穷举法 - 又称为暴力破解法,对所有的可能性进行验证,直到找到正确答案。
- 贪婪法 - 在对问题求解时,总是做出在当前看来是最好的选择,不追求最优解,快速找到满意解。
- 贪婪法 - 在对问题求解时,总是做出在当前看来
- 最好的选择,不追求最优解,快速找到满意解。
- 分治法 - 把一个复杂的问题分成两个或更多的相同或相似的子问题,再把子问题分成更小的子问题,直到可以直接求解的程度,最后将子问题的解进行合并得到原问题的解。
- 回溯法 - 回溯法又称为试探法,按选优条件向前搜索,当搜索到某一步发现原先选择并不优或达不到目标时,就退回一步重新选择。
- 动态规划 - 基本思想也是将待求解问题分解成若干个子问题,先求解并保存这些子问题的解,避免产生大量的重复运算。
Expand Down
Loading

0 comments on commit 75ecfc4

Please sign in to comment.