由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 有谁看过youtube上的算法课吗?
相关主题
嵌入式系统用什么sorting算法比较好?recurvion真的很难懂~~
Efficient algorithms for finding number, help please树的前序遍历
请大虾验证!A STL sorting algorithm problem
一道热门的 Google 面试题 (转载)问一个基本问题
underlying sort algorithm for SET in STL?如何 randomize 一个sorted的文件 ?
reverse LL recursively如何sort and merge n 个sorted linked list
[合集] 问个递归的问题如何让python dictionary sorting 的速度变得很快?
Python: What does this mean?这个条件语句如何写?
相关话题的讨论汇总
话题: lecture话题: sort话题: 算法话题: youtube话题: analyze
进入Programming版参与讨论
1 (共1页)
a********e
发帖数: 79
1
youtube上有mit的算法课。不知道大家的评价怎么样?
http://www.youtube.com/watch?v=JPyuH4qXLZ0&list=EC8B24C31197EC3
l*********s
发帖数: 5409
2
thanks
d**s
发帖数: 98
3
Thx!

【在 a********e 的大作中提到】
: youtube上有mit的算法课。不知道大家的评价怎么样?
: http://www.youtube.com/watch?v=JPyuH4qXLZ0&list=EC8B24C31197EC3

a********e
发帖数: 79
4
有看过的吗?说说怎样?
l*********s
发帖数: 5409
5
我觉得很好。很有深度,不愧是名校。不过都公开课了,怎么赚钱呢?

【在 a********e 的大作中提到】
: 有看过的吗?说说怎样?
a********e
发帖数: 79
r*******n
发帖数: 3020
7
不是好像,确实用这本书

【在 a********e 的大作中提到】
: http://www.amazon.com/Introduction-Algorithms-Thomas-H-Cormen/d
: 好像是用这本书。

r*******n
发帖数: 3020
8
很不错

【在 a********e 的大作中提到】
: youtube上有mit的算法课。不知道大家的评价怎么样?
: http://www.youtube.com/watch?v=JPyuH4qXLZ0&list=EC8B24C31197EC3

a********e
发帖数: 79
9
写点听课笔记吧。
lecture one:
two examples: interstion sort and merge sort.
Analyze the running time.
Asymptotically analysis.
Big O notation.
Recursion tree and get the running time for merge sort.
lecture two:
More rigorous for the material for lecture one.
big O \Theta \Omega small o \omega notation.
Recursion tree method.
Master theorem (sketch of proof).
lecture three:
Divide and conquer.
Examples:
1. Binary search
2. X^n
3. Finbonacci
4. Matrix multiplication and Strassen's algorithm
5. VLSI layout problem.
lecture four:
Quick sort.
algorithm and psudo code.
analyze in different case. (best, worst,average)
randomized quicksort and analysis including the proof.
r****y
发帖数: 26819
10
听到dynamic programming那集就没声音了。

【在 a********e 的大作中提到】
: 写点听课笔记吧。
: lecture one:
: two examples: interstion sort and merge sort.
: Analyze the running time.
: Asymptotically analysis.
: Big O notation.
: Recursion tree and get the running time for merge sort.
: lecture two:
: More rigorous for the material for lecture one.
: big O \Theta \Omega small o \omega notation.

a********e
发帖数: 79
11
you can change some setting in your computer to get louder.
Since the noise is quite little, I find the quality is quite
good.

【在 r****y 的大作中提到】
: 听到dynamic programming那集就没声音了。
a********e
发帖数: 79
12
lecture 5
Deeper discuss on sorting alg.
Using comparison tree model, prove the comparison
sorting cannot better than nlgn.
Introduce non-comparison alg.
counting sort
radix sort, analyze running time.
1 (共1页)
进入Programming版参与讨论
相关主题
这个条件语句如何写?underlying sort algorithm for SET in STL?
能有人详细讲一下这两道google的面试题吗?reverse LL recursively
几道面试题:memory, sort, 等[合集] 问个递归的问题
紧急求助,C语言面试题Python: What does this mean?
嵌入式系统用什么sorting算法比较好?recurvion真的很难懂~~
Efficient algorithms for finding number, help please树的前序遍历
请大虾验证!A STL sorting algorithm problem
一道热门的 Google 面试题 (转载)问一个基本问题
相关话题的讨论汇总
话题: lecture话题: sort话题: 算法话题: youtube话题: analyze