Introduction to Algorithms 2nd ed. Cambridge, MA: MIT Press, 2001. ISBN: 9780262032933.

Introduction and document distance

L1

Introduction and document distance

CLRS, chapters 1-3

L2

More document distance, mergesort

CLRS, sections 11.1-11.2

Binary search trees

L3

Airplane scheduling, binary search trees

CLRS, chapter 10 and sections 12.1-12.3

L4

Balanced binary search trees

CLRS, sections 13.1 and 13.2 for a different approach (red-black trees)

Hashing

L5

Hashing I: chaining, hash functions

L6

Hashing II:
table doubling, Karp-Rabin

CLRS,
chapter 17 and section 32.2

L7

Hashing
III: open addressing

CLRS,
section 11.4 (and 11.3.3 and 11.5 if interested)

Sorting

L8

Sorting I:
heaps

CLRS,
sections 2.1-2.3 and 6.1-6.2

L9

Sorting II:
heaps

CLRS,
sections 6.1-6.4

L10

Sorting
III: lower bounds, linear-time sorting

CLRS,
sections 8.1-8.4

L11

Sorting IV:
stable sorting, radix sort

Searching

L12

Searching
I: graph search, representations, and applications

CLRS,
sections 22.1-22.3 and B.4

L13

Searching
II: breadth-first search and depth-first search

CLRS,
sections 22.2-22.3

L14

Searching
III: topological sort and NP-completeness

CLRS,
sections 22.4 and 34.1-34.3 (at a high level)

Shortest
paths

L15

Shortest
paths I: intro

CLRS,
chapter 24 (intro)

L16

Shortest
paths II: Bellman-Ford

L17

Shortest
paths III: Dijkstra

CLRS,
sections 24.2-24.3

L18

Shortest
paths IV: Dijkstra speedups

Wagner,
Dorothea, and Thomas Willhalm. "Speed-Up Techniques for Shortest-Path
Computations." In Lecture Notes in Computer Science: Proceedings of
the 24th Annual Symposium on Theoretical Aspects of Computer Science
.
Berlin / Heidelberg: Springer, 2007. ISBN: 9783540709176. Read up to section
3.2.

Dynamic
programming

L19

Dynamic programming
I: memoization, Fibonacci, Crazy Eights, guessing

CLRS,
chapter 15

L20

Dynamic
programming II: longest common subsequence, parent pointers

L21

Dynamic
programming III: text justification, parenthesization, knapsack,
pseudopolynomial time, Tetris training

L22

Dynamic
programming IV: piano fingering, structural DP (trees), vertex cover,
dominating set, and beyond

For fun,
see papers on piano fingering and polyphonic piano fingering via DP:

Parncutt,
Richard, et al. "An Ergonomic Model of Keyboard Fingering for Melodic
Fragments." Music Perception 14, no. 4 (1997): 341-382.

Al Kasimi,
Alia, Eric Nichols, and Christopher Raphael. "A Simple Algorithm for
Automatic Generation of Polyphonic Piano Fingerings." In Proceedings
of the 8th International Conference on Music Information Retrieval
, 2007,
pp. 355-356.

For fun,
watch the Metamorphosis of the Cube video,
which illustrates a folding DP.

Numerics

L23

Numerics I

L24

Numerics II

Beyond
6.006

L25

Beyond
6.006: follow-on classes, geometric folding algorithms

Reading task(Introduction to Algorithms. 2nd)的更多相关文章

  1. [翻译] 提升树算法的介绍(Introduction to Boosted Trees)

    [翻译] 提升树算法的介绍(Introduction to Boosted Trees) 1. 有监督学习的要素 XGBoost 适用于有监督学习问题.在此类问题中,我们使用多特征的训练数据集 \(x ...

  2. 图形上下文导论(Introduction to SWT Graphics)zz

    图形上下文导论(Introduction to SWT Graphics) 摘要: org.eclipse.swt.graphics包(package),包含了管理图形资源的类.只要实现了org.ec ...

  3. 6.006 Introduction to Algorithms

    课程信息 6.006 Introduction to Algorithms

  4. 算法导论(Introduction to Algorithms )— 第十二章 二叉搜索树— 12.1 什么是二叉搜索树

    搜索树数据结构支持很多动态集合操作,如search(查找).minmum(最小元素).maxmum(最大元素).predecessor(前驱).successor(后继).insert(插入).del ...

  5. note of introduction of Algorithms(Lecture 3 - Part1)

    Lecture 3(part 1) Divide and conquer 1. the general paradim of algrithm as bellow: 1. divide the pro ...

  6. hdu 1885 Key Task(bfs+状态压缩)

    Problem Description The Czech Technical University years of its existence . Some of the university b ...

  7. hdu 3572 Task Schedule (dinic算法)

    pid=3572">Task Schedule Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 ...

  8. C#多线程编程のTask(任务全面解析)

    Task是.NET4.0加入的,跟线程池ThreadPool的功能类似,用Task开启新任务时,会从线程池中调用线程,而Thread每次实例化都会创建一个新的线程. 我们可以说Task是一种基于任务的 ...

  9. 课程一(Neural Networks and Deep Learning),第一周(Introduction to Deep Learning)—— 2、10个测验题

    1.What does the analogy “AI is the new electricity” refer to?  (B) A. Through the “smart grid”, AI i ...

随机推荐

  1. 关于多条数据转为json格式单次传输的问题 2017.05.27

    数据形式如下: var mycars = [];//定义数组存放多条数据 for(var i=0;i<2;i++){ var jsonData = {};//定义变量存放单条数据 jsonDat ...

  2. 关于原生js中bind函数的实现

    今天继续研究了bind函数的实现,也知道了shim和polyfill的说法,现在总结一下, if (!Function.prototype.bind) { Function.prototype.bin ...

  3. W3C------JS

    ✄--------------------------------------------分割线--------------------------------------------✄ W3C:ht ...

  4. HTML5 CSS3 经典案例:无插件拖拽上传图片 (支持预览与批量) (二)

    转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/31513065 上一篇已经实现了这个项目的整体的HTML和CSS: HTML5 C ...

  5. 【构造】UVa 11387 The 3-Regular Graph

    Description 输入n,构造一个n个点的无向图,使得每个点的度数都为3.不能有重边和自环,输出图或确定无解. Solution 如果n为奇数,奇数*3=奇数,度数为奇,必无解. 考虑我们怎么构 ...

  6. jquery 判断一个元素是否在数组中 $.inarry()使用

    需要判断一个元素是否在一个数组里: js indexOf()方法  如果存在 则返回该元素的下标值 如果不存在则返回-1 学习源头: http://www.w3school.com.cn/jsref/ ...

  7. linux 搜索某个系统命令的位置

    Which命令 功能简述which命令的作用是在PATH变量指定的路径中搜索某个系统命令的位置并且返回第一个搜索结果.也就是说使用which命令就可以看到某个系统命令是否存在以及执行的到底是哪一个位置 ...

  8. 【爆料】-《堪培拉大学毕业证书》Canberra一模一样原件

    ☞堪培拉大学毕业证书[微/Q:2544033233◆WeChat:CC6669834]UC毕业证书/联系人Alice[查看点击百度快照查看][留信网学历认证&博士&硕士&海归& ...

  9. monkey------模块组合测试

    由于项目基本功能和预置APK都很多,单个模块跑消耗机器数量很大,效果也不佳.而且monkey测试经常要过夜测试,所以组合模块试用较多,而且发现问题量也更大.组合模块就是按照测试标准要求和模块特性,按照 ...

  10. java基础 —— properties 使用

    目的:分别读取myPro*.properties文件内容,复习一下项目中读取资源配置文件的方法. 项目下载地址:http://pan.baidu.com/s/1jHuzPxs 项目结构如图,ReadP ...