448页伊利诺伊大学《算法》图书【附PDF资料】

2019 年 1 月 18 日 人工智能前沿讲习班

关注文章公众号:人工智能前沿讲习班

回复"book1"获取伊利诺伊大学《算法》书


导读


本书是Jeff Erickson即将出版的免费电子教科书《算法》,以及他自1998年以来为伊利诺伊大学厄巴纳香槟分校各种计算机理论课程撰写的其他课堂讲义笔记

文中包含书籍信息、获取方式、算法笔记、模型笔记等一系列内容,


作者简介



Jeff Erickson官方主页肖像


个人主页:

http://jeffe.cs.illinois.edu/


Jeff Erickson,计算机科学教授,加州大学伯克利分校计算机科学博士毕业,1998年起就职于伊利诺伊大学厄巴那香槟分校(University of Illinois, Urbana-Champaign),研究兴趣领域为算法和数据结构等,主要教授大型算法课程,根据其个人主页信息,他的课堂讲义大受学生欢迎。




全书下载(第0版,2018年12月,共448页)




单页排版(适用于电脑屏幕观看):

http://jeffe.cs.illinois.edu/teaching/algorithms/book/Algorithms-JeffE.pdf


双页排版(适用于打印):

http://jeffe.cs.illinois.edu/teaching/algorithms/book/Algorithms-JeffE-2up.pdf


GitHub链接(进行错误跟踪):

https://github.com/jeffgerickson/algorithms


网络版本(永久副本):

https://archive.org/details/Algorithms-Jeff-Erickson


单章下载(每个章节都独立排版,因此页码和整体版本有出入)



前言(8页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/!!-preface.pdf


简介(20页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/00-intro.pdf


1、递归(48页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/01-recursion.pdf


2、回溯法(26页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/02-backtracking.pdf


3、动态规划(Dynamic Programming) (62页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/03-dynprog.pdf


4、贪心算法(Greedy Algorithm)(28页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/04-greedy.pdf


5、基本图形算法(Basic Graph Algorithms)(38页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/05-graphs.pdf


6、深度优先搜索(Depth-First-Search)(32页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/06-dfs.pdf


7、最小生成树(Minimum Spanning Tree)(16页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/07-mst.pdf


8、最短路径(Shortest Paths)(35页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/08-sssp.pdf


9、所有节点对之间的最短路问题(All Pair Shortest Path) (18页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/09-apsp.pdf


10、最小割与最大流(mincut & maxflow) (26页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/10-maxflow.pdf


11、流动和切割的应用(Applications of Flows and Cuts)(26页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/11-maxflowapps.pdf


12、NP-Hardness(50页)

http://jeffe.cs.illinois.edu/teaching/algorithms/book/12-nphard.pdf


相关讲义:书籍相关以及更高级课程



以下是与教科书直接相关的更高级材料的注释,这些笔记大致与教科书章节相匹配。


A.快速傅立叶变换(Fast Fourier Transform)(17页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/A-fft.pdf


B.快速指数算法(Fast Exponential Algorithms)(14页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/B-fastexpo.pdf


C.形式语言和自动化的动态编程(Dynamic Programming for Formal Languages and Automata)(7页,未完成)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/C-automata-dynprog.pdf


D.高级动态规化(Advanced Dynamic Programming )(18页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/D-faster-dynprog.pdf


E.拟阵(Matroids)(8页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/E-matroids.pdf


F.平衡与伪流(Balances and Pseudoflows)(13页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/F-pseudoflows.pdf


G.最小费用流算法(Minimum cost flow)(16页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/G-mincostflow.pdf


H.线性规划(Linear Programming)(21页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/H-lp.pdf


I.线性规划算法(Linear Programming Algorithms)(18页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/I-simplex.pdf


J.近似算法(Approximation Algorithms)(25页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/J-approx.pdf


教科书中未涉及的主题的讲义(编号独立于教科书)



1、离散概率(Discrete Probability)(22页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/01-random.pdf


2、螺丝和螺帽(Nuts and Bolts)(13页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/02-nutsbolts.pdf


3、Treaps and Skip Lists(14页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/03-treaps.pdf


4、Tail Inequalities(10页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/04-chernoff.pdf


5、哈希算法(Hashing)(19页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/05-hashing.pdf


6、Filtering and Streaming(6页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/06-bloom.pdf


7、字符串匹配(String Matching)(14页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/07-strings.pdf


8、Randomized Minimum Cut(7页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/08-mincut.pdf


9、平摊分析(Amortized Analysis)(14页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/09-amortize.pdf


10、Scapegoat and Splay Trees(15页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/10-scapegoat-splay.pdf


11、并查集(Disjoint Set)(14页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/11-union-find.pdf


12、Lower Bounds(6页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/12-lowerbounds.pdf


13、对手论据(8页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/13-adversary.pdf


附录I.归纳证明(30页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/98-induction.pdf


附录II.解决复发问题(22页)

http://jeffe.cs.illinois.edu/teaching/algorithms/notes/99-recurrences.pdf


公开私藏:超全计算模型笔记



这些笔记涵盖了CS 374中出现的自动化和形式语言的超全资料,其中一些笔记非常精确详细。


合集(155页):

http://jeffe.cs.illinois.edu/teaching/algorithms/models/all-models.pdf


封面和前言(3页)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/0-cover.pdf


1、字符串(Strings)(17页)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/01-strings.pdf


2、常规语言(Regular languages)(12页)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/02-regular.pdf


3、有限状态机(Finite-state automata)(24页)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/03-automata.pdf


4、不确定性自动机(Nondeterministic automata )(21页)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/04-nfa.pdf


5、上下文无关语言(Context-free languages)(20页)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/05-context-free.pdf


6、图灵机(Turing machings)(20页)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/06-turing-machines.pdf


7、不可判定性(Undecidability )(20页)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/07-undecidable.pdf


8、Universal models(8页,未完成)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/08-universal.pdf


9、非确定性图灵机(Nondeterministic Turing machines)(6页,未完成)

http://jeffe.cs.illinois.edu/teaching/algorithms/models/09-nondeterminism.pdf



原文链接地址:http://jeffe.cs.illinois.edu/teaching/algorithms


历史文章推荐:

重磅 |《模式识别与机器学习》资源大礼包

从Word Embedding到Bert模型—自然语言处理中的预训练技术发展史

SFFAI分享 | 曹杰:Rotating is Believing

SFFAI分享 | 黄怀波 :自省变分自编码器理论及其在图像生成上的应用

AI综述专栏 | 深度神经网络加速与压缩

SFFAI分享 | 田正坤 :Seq2Seq模型在语音识别中的应用

SFFAI 分享 | 王克欣 : 详解记忆增强神经网络

SFFAI报告 | 常建龙 :深度卷积网络中的卷积算子研究进展

SFFAI 分享 | 李宏扬 :二阶信息在图像分类中的应用

登录查看更多
0

相关内容

计算机科学(Computer Science, CS)是系统性研究信息与计算的理论基础以及它们在计算机系统中如何实现与应用的实用技术的学科。 它通常被形容为对那些创造、描述以及转换信息的算法处理的系统研究。计算机科学包含很多分支领域;其中一些,比如计算机图形学强调特定结果的计算,而另外一些,比如计算复杂性理论是学习计算问题的性质。还有一些领域专注于挑战怎样实现计算。比如程序设计语言理论学习描述计算的方法,而程序设计是应用特定的程序设计语言解决特定的计算问题,人机交互则是专注于挑战怎样使计算机和计算变得有用、可用,以及随时随地为 所用。 现代计算机科学( Computer Science)包含理论计算机科学和应用计算机科学两大分支。
【硬核书】不完全信息决策理论,467页pdf
专知会员服务
336+阅读 · 2020年6月24日
【干货书】《机器学习导论(第二版)》,348页pdf
专知会员服务
239+阅读 · 2020年6月16日
【实用书】数据科学基础,484页pdf,Foundations of Data Science
专知会员服务
117+阅读 · 2020年5月28日
【哈佛《CS50 Python人工智能入门》课程 (2020)】
专知会员服务
109+阅读 · 2020年4月12日
【电子书】大数据挖掘,Mining of Massive Datasets,附513页PDF
专知会员服务
101+阅读 · 2020年3月22日
448页伊利诺伊大学《算法》图书-附下载
专知
15+阅读 · 2018年12月31日
下载 | 100页机器学习入门完整版,初学者必备!
机器学习算法与Python学习
15+阅读 · 2018年12月18日
2018计算机图形学研究报告(附PDF下载)
数据派THU
7+阅读 · 2018年8月16日
人工智能入门书单(附PDF链接)
AI前线
21+阅读 · 2018年8月2日
Arxiv
34+阅读 · 2020年1月2日
A Modern Introduction to Online Learning
Arxiv
19+阅读 · 2019年12月31日
Neural Speech Synthesis with Transformer Network
Arxiv
5+阅读 · 2019年1月30日
Arxiv
5+阅读 · 2018年10月11日
Arxiv
7+阅读 · 2018年3月17日
Arxiv
3+阅读 · 2018年2月24日
VIP会员
相关论文
Arxiv
34+阅读 · 2020年1月2日
A Modern Introduction to Online Learning
Arxiv
19+阅读 · 2019年12月31日
Neural Speech Synthesis with Transformer Network
Arxiv
5+阅读 · 2019年1月30日
Arxiv
5+阅读 · 2018年10月11日
Arxiv
7+阅读 · 2018年3月17日
Arxiv
3+阅读 · 2018年2月24日
Top
微信扫码咨询专知VIP会员