CS基础
文章平均质量分 77
Huidanz
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MITx - 6.00.2x 笔记(Unit1 Lecture 1 Knapsack Problem)
Introduction to Computational Thinking and Data Science Practice, practice, and practice !Optimization models 优化模型Statistical models 统计模型Simulation models 仿真模型Lecture 1 优化和背包问题(Knapsack...原创 2018-03-03 23:59:46 · 529 阅读 · 0 评论 -
MITx - 6.00.2x 笔记(Unit1 Lecture 2 Decision Trees and Dynamic Programming)
Lecture 2 Decision Trees and Dynamic ProgrammingBrute Force Algorithms暴力算法,穷举法Decision Treeclass Food(object): def __init__(self, n, v, w): self.name = n self.value = v ...原创 2018-03-04 21:42:36 · 552 阅读 · 0 评论 -
MITx - 6.00.2x 笔记(Unit1 Lecture 3 Graph Problems)
Lecture 3 Graph ProblemsGraph Theory(图论)图论是数学的一个分支,它以图为研究对象,研究顶点和边组成的图形的数学理论和方法。nodes, edges 现实世界中很多事物都是有联系的,因此图论特别适合于解决现实问题。 可应用于路径规划 Adjacency List(邻接表) 在图论中,邻接表代表一个图中的所有边或弧。 如果是无向图,那么每...原创 2018-03-06 14:48:16 · 503 阅读 · 0 评论
分享