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. HTML5 CSS3 诱人的实例: 3D立方体旋转动画

    转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/34120047 创意来自:http://www.html5tricks.com/d ...

  2. Jenkins持续集成项目搭建与实践——基于Python Selenium自动化测试(自由风格)

    Jenkins简介 Jenkins是Java编写的非常流行的持续集成(CI)服务,起源于Hudson项目.所以Jenkins和Hudson功能相似. Jenkins支持各种版本的控制工具,如CVS.S ...

  3. Python 的 urllib.parse 库解析 URL

      Python 中的 urllib.parse 模块提供了很多解析和组建 URL 的函数. 解析url urlparse() 函数可以将 URL 解析成 ParseResult 对象.对象中包含了六 ...

  4. python中__del__使用方法

    创建对象后,python解释器默认调用__init__()方法.当删除一个对象时,python解释器也会默认调用一个方法,这个方法为__del__()方法.在python中,对于开发者来说很少会直接销 ...

  5. BZOJ_4590_[Shoi2015]自动刷题机_二分答案

    BZOJ_4590_[Shoi2015]自动刷题机_二分答案 Description 曾经发明了信号增幅仪的发明家SHTSC又公开了他的新发明:自动刷题机--一种可以自动AC题目的神秘装置.自动 刷题 ...

  6. BZOJ_1923_[Sdoi2010]外星千足虫_高斯消元+bitset

    BZOJ_1923_[Sdoi2010]外星千足虫_高斯消元 Description Input 第一行是两个正整数 N, M. 接下来 M行,按顺序给出 Charles 这M次使用“点足机”的统计结 ...

  7. Python + Appium 【已解决】driver(session)在多个class之间复用,执行完一个类的用例,再次执行下个类的用例时不需要初始化

    实现效果:打开App进行自动化测试,只需打开APP一次,按先后顺序执行n个py文件中的相应操作,实现自动化测试. 示例:如截图示例,一个App,根据此APP内不同的模块,写成了不同的py文件, 预期结 ...

  8. SpringBoot---页面跳转之WebMvcConfigurerAdapter

    摘要:在springboot中定义自己的方法继承WebMvcConfigurerAdapter方法可以实现扩展springMvc功能,要全面实现接管springmvc就要在自己的方法上加上@Enabl ...

  9. 客户端热更新框架之UI热更框架设计(上)

    什么是热更新,为什么需要热更新?          热更新是目前各大手游等众多App常用的更新方式.简单来说就是在用户通过App Store下载App之后,打开App时遇到的即时更新.对于手游客户端来 ...

  10. .net core 在网络高并发下提高JSON的处理效率

    现有的webapi一般都基于JSON的格式来处理数据,由于JSON是一个文本类的序列化协议所以在性能上自然就相对低效一些.在.net中常用Newtonsoft.Json是最常用的组件,由于提供简便基于 ...