[Coursera] Algorithms Part II
Kevin Wayne and Robert Sedgewick (Princeton University)

Info hash7afeafb540f4ff63690f1a6517748341f6809516
Last mirror activity11:32 ago
Size1.93GB (1,925,417,068 bytes)
Added2016-09-26 15:39:15
Views2103
Hits8882
ID3426
Typemulti
Downloaded11650 time(s)
Uploaded bygravatar.com icon for user joecohen
Folderalgo-p2
Num files111 files
File list
[Hide list]
PathSize
book/Robert Sedgewick_ Kevin Daniel Wayne-Algorithms-Addison-Wesley (2011).pdf11.55MB
job-interview-questions/week1/01-undirected-graphs/hints.txt0.33kB
job-interview-questions/week1/01-undirected-graphs/questions.txt0.75kB
job-interview-questions/week1/02-directed-graphs/hints.txt0.31kB
job-interview-questions/week1/02-directed-graphs/questions.txt0.90kB
job-interview-questions/week2/01-minimum-spanning-trees/hints.txt0.43kB
job-interview-questions/week2/01-minimum-spanning-trees/questions.txt0.99kB
job-interview-questions/week2/02-shortest-paths/hints.txt0.44kB
job-interview-questions/week2/02-shortest-paths/questions.txt0.80kB
job-interview-questions/week3/01-maximum-flow/hints.txt0.50kB
job-interview-questions/week3/01-maximum-flow/questions.txt0.93kB
job-interview-questions/week3/02-radix-sorts/hints.txt0.51kB
job-interview-questions/week3/02-radix-sorts/questions.txt1.29kB
job-interview-questions/week5/01-tries.png81.61kB
job-interview-questions/week5/02-substring-search.png84.85kB
job-interview-questions/week6/01-regular-expressions.png73.83kB
job-interview-questions/week6/02-data-compression.png67.36kB
job-interview-questions/week7/01-reductions.png104.04kB
job-interview-questions/week7/02-intractability.png88.67kB
job-interview-questions/week7/03-linear-programming.png94.04kB
lectures/week0/Algorithms Part II 0.0 Course Introduction (922).mp444.73MB
lectures/week1/01-undirected-graphs/Algorithms Part II 1.0 Introduction to Graphs (932).mp425.76MB
lectures/week1/01-undirected-graphs/Algorithms Part II 1.1 Graph API (1447).mp421.58MB
lectures/week1/01-undirected-graphs/Algorithms Part II 1.2 Depth-First Search (2622).mp470.28MB
lectures/week1/01-undirected-graphs/Algorithms Part II 1.3 Breadth-First Search (1334).mp434.16MB
lectures/week1/01-undirected-graphs/Algorithms Part II 1.4 Connected Components (1856).mp425.95MB
lectures/week1/01-undirected-graphs/Algorithms Part II 1.5 Graph Challenges (1429).mp457.60MB
lectures/week1/02-directed-graphs/Algorithms Part II 2.0 Introduction to Digraphs (830).mp413.96MB
lectures/week1/02-directed-graphs/Algorithms Part II 2.1 Digraph API (456).mp47.56MB
lectures/week1/02-directed-graphs/Algorithms Part II 2.2 Digraph Search (2056).mp428.93MB
lectures/week1/02-directed-graphs/Algorithms Part II 2.3 Topological Sort (1254).mp428.71MB
lectures/week1/02-directed-graphs/Algorithms Part II 2.4 Strong Components (2022).mp427.33MB
lectures/week2/01-minimum-spanning-trees/Algorithms Part II 3.0 Introduction to MSTs (404).mp413.04MB
lectures/week2/01-minimum-spanning-trees/Algorithms Part II 3.1 Greedy Algorithm (1256).mp419.17MB
lectures/week2/01-minimum-spanning-trees/Algorithms Part II 3.2 Edge-Weighted Graph API (1115).mp415.86MB
lectures/week2/01-minimum-spanning-trees/Algorithms Part II 3.3 Kruskal's Algorithm (1228).mp417.69MB
lectures/week2/01-minimum-spanning-trees/Algorithms Part II 3.4 Prim's Algorithm (3315).mp470.03MB
lectures/week2/01-minimum-spanning-trees/Algorithms Part II 3.5 MST Context (1034).mp417.22MB
lectures/week2/02-shortest-paths/Algorithms Part II 4.0 Shortest Paths APIs (1051).mp429.06MB
lectures/week2/02-shortest-paths/Algorithms Part II 4.1 Shortest Path Properties (1446).mp435.59MB
lectures/week2/02-shortest-paths/Algorithms Part II 4.2 Dijkstra's Algorithm (1858).mp453.89MB
lectures/week2/02-shortest-paths/Algorithms Part II 4.3 Edge-Weighted DAGs (1923).mp427.78MB
lectures/week2/02-shortest-paths/Algorithms Part II 4.4 Negative Weights (2101).mp429.19MB
lectures/week3/01-maximum-flow/Algorithms Part II 5.0 Introduction to Maxflow (1033).mp415.72MB
lectures/week3/01-maximum-flow/Algorithms Part II 5.1 Ford-Fulkerson Algorithm (632).mp48.92MB
lectures/week3/01-maximum-flow/Algorithms Part II 5.2 Maxflow-Mincut Theorem (938).mp421.43MB
lectures/week3/01-maximum-flow/Algorithms Part II 5.3 Running Time Analysis (8-49).mp413.29MB
lectures/week3/01-maximum-flow/Algorithms Part II 5.4 Java Implementation (14-29).mp419.76MB
lectures/week3/01-maximum-flow/Algorithms Part II 5.5 Maxflow Applications (22-20).mp434.81MB
lectures/week3/02-radix-sorts/Algorithms Part II 6.0 Strings in Java (17-43).mp426.62MB
lectures/week3/02-radix-sorts/Algorithms Part II 6.1 Key-Indexed Counting (12-06).mp417.57MB
lectures/week3/02-radix-sorts/Algorithms Part II 6.2 LSD Radix Sort (15-00).mp421.71MB
lectures/week3/02-radix-sorts/Algorithms Part II 6.3 MSD Radix Sort (13-41).mp419.68MB
lectures/week3/02-radix-sorts/Algorithms Part II 6.4 3-way Radix Quicksort (7-22).mp412.49MB
lectures/week3/02-radix-sorts/Algorithms Part II 6.5 Suffix Arrays (1925).mp457.98MB
lectures/week5/01-tries/Algorithms Part II 7.0 R-way Tries (3219).mp464.75MB
lectures/week5/01-tries/Algorithms Part II 7.1 Ternary Search Tries (2242).mp430.70MB
lectures/week5/01-tries/Algorithms Part II 7.2 Character-Based Operations (2003).mp434.31MB
lectures/week5/02-substring-search/Algorithms Part II 8.0 Introduction to Substring Search (642).mp49.48MB
lectures/week5/02-substring-search/Algorithms Part II 8.1 Brute-Force Substring Search (1011).mp414.82MB
lectures/week5/02-substring-search/Algorithms Part II 8.2 Knuth-Morris-Pratt (3314).mp447.23MB
lectures/week5/02-substring-search/Algorithms Part II 8.3 Boyer-Moore (836).mp412.59MB
lectures/week5/02-substring-search/Algorithms Part II 8.4 Rabin-Karp (1613).mp425.77MB
lectures/week6/01-regular-expressions/Algorithms Part II 9.0 Regular Expressions (2003).mp432.33MB
lectures/week6/01-regular-expressions/Algorithms Part II 9.1 REs and NFAs (1314).mp419.99MB
lectures/week6/01-regular-expressions/Algorithms Part II 9.2 NFA Simulation (1827).mp436.97MB
lectures/week6/01-regular-expressions/Algorithms Part II 9.3 NFA Construction (1142).mp417.37MB
lectures/week6/01-regular-expressions/Algorithms Part II 9.4 Regular Expression Applications (2009).mp469.52MB
lectures/week6/02-data-compression/Algorithms Part II 10.0 Introduction to Data Compression (2227).mp437.79MB
lectures/week6/02-data-compression/Algorithms Part II 10.1 Run-Length Coding (559).mp49.55MB
lectures/week6/02-data-compression/Algorithms Part II 10.2 Huffman Compression (2414).mp435.67MB
lectures/week6/02-data-compression/Algorithms Part II 10.3 LZW Compression (2733).mp438.95MB
lectures/week7/01-reductions/Algorithms Part II 11.0 Introduction to Reductions (925).mp418.30MB
lectures/week7/01-reductions/Algorithms Part II 11.1 Designing Algorithms (813).mp412.45MB
lectures/week7/01-reductions/Algorithms Part II 11.2 Establishing Lower Bounds (916).mp417.25MB
lectures/week7/01-reductions/Algorithms Part II 11.3 Classifying Problems (12-45).mp419.42MB
lectures/week7/02-linear-programming/Algorithms Part II 12.0 Brewer-'s Problem (21-15).mp431.22MB
lectures/week7/02-linear-programming/Algorithms Part II 12.1 Simplex Algorithm (11-49).mp416.90MB
lectures/week7/02-linear-programming/Algorithms Part II 12.2 Simplex Implementations (1621).mp483.58MB
lectures/week7/02-linear-programming/Algorithms Part II 12.3 Linear Programming Reductions (11-46).mp421.79MB
lectures/week7/03-intractability/Algorithms Part II 13.0 Introduction to Intractability (1700).mp436.16MB
lectures/week7/03-intractability/Algorithms Part II 13.1 Search Problems (1056).mp422.26MB
lectures/week7/03-intractability/Algorithms Part II 13.2 P vs. NP (1629).mp431.41MB
lectures/week7/03-intractability/Algorithms Part II 13.3 Classifying Problems (1343).mp422.41MB
lectures/week7/03-intractability/Algorithms Part II 13.4 NP-Completeness (1238).mp433.34MB
lectures/week7/03-intractability/Algorithms Part II 13.5 Coping with Intractability (1401).mp422.72MB
programming-assignments/baseball.html14.16kB
programming-assignments/baseball.png49.49kB
programming-assignments/boggle-gui.png60.56kB
programming-assignments/boggle.html15.51kB
programming-assignments/burrows.html22.60kB
programming-assignments/dates.png10.64kB
programming-assignments/dual-gradient.png83.43kB
programming-assignments/HJoceanSmall.png160.28kB
programming-assignments/HJoceanSmallEnergy.png93.77kB
programming-assignments/HJoceanSmallShrunk.png177.98kB
programming-assignments/HJoceanSmallVerticalSeam.png94.33kB
programming-assignments/horizontal-seam.png161.98kB
programming-assignments/pines.png9.24kB
programming-assignments/pins.png8.87kB
programming-assignments/pint.png9.94kB
programming-assignments/Qu.png4.01kB
programming-assignments/README.txt0.14kB
programming-assignments/seamCarving.html13.93kB
programming-assignments/sid.png8.99kB
programming-assignments/tepee.png9.39kB
programming-assignments/vertical-seam.png168.20kB
programming-assignments/wordnet-fig1.png42.26kB
programming-assignments/wordnet-sap.png10.19kB
programming-assignments/wordnet.html15.20kB
README.txt0.55kB
Mirrors26 complete, 0 downloading = 26 mirror(s) total [Log in to see full list]


Send Feedback