Reading task(Introduction to Algorithms. 2nd)
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: |
CLRS, |
|
L7 |
Hashing |
CLRS, |
|
Sorting |
||
|
L8 |
Sorting I: |
CLRS, |
|
L9 |
Sorting II: |
CLRS, |
|
L10 |
Sorting |
CLRS, |
|
L11 |
Sorting IV: |
|
|
Searching |
||
|
L12 |
Searching |
CLRS, |
|
L13 |
Searching |
CLRS, |
|
L14 |
Searching |
CLRS, |
|
Shortest |
||
|
L15 |
Shortest |
CLRS, |
|
L16 |
Shortest |
|
|
L17 |
Shortest |
CLRS, |
|
L18 |
Shortest |
Wagner, |
|
Dynamic |
||
|
L19 |
Dynamic programming |
CLRS, |
|
L20 |
Dynamic |
|
|
L21 |
Dynamic |
|
|
L22 |
Dynamic |
For fun, Parncutt, Al Kasimi, For fun, |
|
Numerics |
||
|
L23 |
Numerics I |
|
|
L24 |
Numerics II |
|
|
Beyond |
||
|
L25 |
Beyond |
Reading task(Introduction to Algorithms. 2nd)的更多相关文章
- [翻译] 提升树算法的介绍(Introduction to Boosted Trees)
[翻译] 提升树算法的介绍(Introduction to Boosted Trees) 1. 有监督学习的要素 XGBoost 适用于有监督学习问题.在此类问题中,我们使用多特征的训练数据集 \(x ...
- 图形上下文导论(Introduction to SWT Graphics)zz
图形上下文导论(Introduction to SWT Graphics) 摘要: org.eclipse.swt.graphics包(package),包含了管理图形资源的类.只要实现了org.ec ...
- 6.006 Introduction to Algorithms
课程信息 6.006 Introduction to Algorithms
- 算法导论(Introduction to Algorithms )— 第十二章 二叉搜索树— 12.1 什么是二叉搜索树
搜索树数据结构支持很多动态集合操作,如search(查找).minmum(最小元素).maxmum(最大元素).predecessor(前驱).successor(后继).insert(插入).del ...
- 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 ...
- hdu 1885 Key Task(bfs+状态压缩)
Problem Description The Czech Technical University years of its existence . Some of the university b ...
- hdu 3572 Task Schedule (dinic算法)
pid=3572">Task Schedule Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 ...
- C#多线程编程のTask(任务全面解析)
Task是.NET4.0加入的,跟线程池ThreadPool的功能类似,用Task开启新任务时,会从线程池中调用线程,而Thread每次实例化都会创建一个新的线程. 我们可以说Task是一种基于任务的 ...
- 课程一(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 ...
随机推荐
- ansj人名识别
1.前言 ansj人名识别会用到两个字典,分别是:person/asian_name_freq.data.person/person.dic. 1.1.asian_name_freq.data 这是一 ...
- SQL*Loader FAQ
SQL*Loader FAQ: Contents [hide] 1 What is SQL*Loader and what is it used for? 2 How does one use th ...
- jQuery学习之旅 Item1 选择器【一】
点击"名称"会跳转到此方法的jQuery官方说明文档. 1. 基础选择器 Basics 名称 说明 举例 #id 根据元素Id选择 $("divId") 选择I ...
- git实用命令
http://blog.sina.com.cn/s/blog_4ce89f2001014qvr.html 1.git clone ...
- ESXI的安装和部署
1. 实验拓扑图: 2. 实验要求 (1) 新建一台exsi主机,安装exsi5.5系统. 步骤: 1)新建虚拟机,导入光盘. 2)安装esxi系统 (2)在exsi主机中,配置IP地址为1 ...
- 问题(一) DebugAugmenter
问题: DebugAugmenter的作用是什么?是任何一个自创建的变量都可以取代它还是它有特定含义? public class DebugAugmenter Test { @Test public ...
- BZOJ_3503_[Cqoi2014]和谐矩阵_高斯消元
BZOJ_3503_[Cqoi2014]和谐矩阵_高斯消元 题意: 我们称一个由0和1组成的矩阵是和谐的,当且仅当每个元素都有偶数个相邻的1.一个元素相邻的元素包括它本身,及他上下左右的4个元素(如果 ...
- java 日期类 小结
import java.text.*; import java.util.*; class Test2 { public static void main(String[] args) { Syste ...
- linux安装nvm node版本管理器 nvm常用命令 部署node服务器环境
1,nvm git地址点击打开链接,安装命令 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh ...
- 流程控制之while循环
目录 语法(掌握) while+break while+continue while循环的嵌套(掌握) tag控制循环退出(掌握) while+else(了解) 语法(掌握) 循环就是一个重复的过程, ...