| | [book] |
| | | Robert Sedgewick_ Kevin Daniel Wayne-Algorithms-Addison-Wesley (2011).pdf (11.01 MB) |
| | [job-interview-questions] |
| | | [week1] |
| | | | [01-undirected-graphs] |
| | | | | hints.txt (0.33 KB) |
| | | | | questions.txt (0.74 KB) |
| | | | [02-directed-graphs] |
| | | | | hints.txt (0.30 KB) |
| | | | | questions.txt (0.88 KB) |
| | | [week2] |
| | | | [01-minimum-spanning-trees] |
| | | | | hints.txt (0.42 KB) |
| | | | | questions.txt (0.97 KB) |
| | | | [02-shortest-paths] |
| | | | | hints.txt (0.43 KB) |
| | | | | questions.txt (0.78 KB) |
| | | [week3] |
| | | | [01-maximum-flow] |
| | | | | hints.txt (0.48 KB) |
| | | | | questions.txt (0.90 KB) |
| | | | [02-radix-sorts] |
| | | | | hints.txt (0.49 KB) |
| | | | | questions.txt (1.25 KB) |
| | | [week5] |
| | | | 01-tries.png (79.69 KB) |
| | | | 02-substring-search.png (82.86 KB) |
| | | [week6] |
| | | | 01-regular-expressions.png (72.10 KB) |
| | | | 02-data-compression.png (65.78 KB) |
| | | [week7] |
| | | | 01-reductions.png (101.61 KB) |
| | | | 02-intractability.png (86.59 KB) |
| | | | 03-linear-programming.png (91.83 KB) |
| | [lectures] |
| | | [week0] |
| | | | Algorithms Part II 0.0 Course Introduction (922).mp4 (42.66 MB) |
| | | [week1] |
| | | | [01-undirected-graphs] |
| | | | | Algorithms Part II 1.0 Introduction to Graphs (932).mp4 (24.57 MB) |
| | | | | Algorithms Part II 1.1 Graph API (1447).mp4 (20.58 MB) |
| | | | | Algorithms Part II 1.2 Depth-First Search (2622).mp4 (67.02 MB) |
| | | | | Algorithms Part II 1.3 Breadth-First Search (1334).mp4 (32.57 MB) |
| | | | | Algorithms Part II 1.4 Connected Components (1856).mp4 (24.75 MB) |
| | | | | Algorithms Part II 1.5 Graph Challenges (1429).mp4 (54.93 MB) |
| | | | [02-directed-graphs] |
| | | | | Algorithms Part II 2.0 Introduction to Digraphs (830).mp4 (13.31 MB) |
| | | | | Algorithms Part II 2.1 Digraph API (456).mp4 (7.21 MB) |
| | | | | Algorithms Part II 2.2 Digraph Search (2056).mp4 (27.59 MB) |
| | | | | Algorithms Part II 2.3 Topological Sort (1254).mp4 (27.38 MB) |
| | | | | Algorithms Part II 2.4 Strong Components (2022).mp4 (26.06 MB) |
| | | [week2] |
| | | | [01-minimum-spanning-trees] |
| | | | | Algorithms Part II 3.0 Introduction to MSTs (404).mp4 (12.43 MB) |
| | | | | Algorithms Part II 3.1 Greedy Algorithm (1256).mp4 (18.29 MB) |
| | | | | Algorithms Part II 3.2 Edge-Weighted Graph API (1115).mp4 (15.12 MB) |
| | | | | Algorithms Part II 3.3 Kruskal's Algorithm (1228).mp4 (16.87 MB) |
| | | | | Algorithms Part II 3.4 Prim's Algorithm (3315).mp4 (66.78 MB) |
| | | | | Algorithms Part II 3.5 MST Context (1034).mp4 (16.42 MB) |
| | | | [02-shortest-paths] |
| | | | | Algorithms Part II 4.0 Shortest Paths APIs (1051).mp4 (27.71 MB) |
| | | | | Algorithms Part II 4.1 Shortest Path Properties (1446).mp4 (33.94 MB) |
| | | | | Algorithms Part II 4.2 Dijkstra's Algorithm (1858).mp4 (51.40 MB) |
| | | | | Algorithms Part II 4.3 Edge-Weighted DAGs (1923).mp4 (26.49 MB) |
| | | | | Algorithms Part II 4.4 Negative Weights (2101).mp4 (27.84 MB) |
| | | [week3] |
| | | | [01-maximum-flow] |
| | | | | Algorithms Part II 5.0 Introduction to Maxflow (1033).mp4 (14.99 MB) |
| | | | | Algorithms Part II 5.1 Ford-Fulkerson Algorithm (632).mp4 (8.51 MB) |
| | | | | Algorithms Part II 5.2 Maxflow-Mincut Theorem (938).mp4 (20.43 MB) |
| | | | | Algorithms Part II 5.3 Running Time Analysis (8-49).mp4 (12.67 MB) |
| | | | | Algorithms Part II 5.4 Java Implementation (14-29).mp4 (18.85 MB) |
| | | | | Algorithms Part II 5.5 Maxflow Applications (22-20).mp4 (33.19 MB) |
| | | | [02-radix-sorts] |
| | | | | Algorithms Part II 6.0 Strings in Java (17-43).mp4 (25.38 MB) |
| | | | | Algorithms Part II 6.1 Key-Indexed Counting (12-06).mp4 (16.76 MB) |
| | | | | Algorithms Part II 6.2 LSD Radix Sort (15-00).mp4 (20.70 MB) |
| | | | | Algorithms Part II 6.3 MSD Radix Sort (13-41).mp4 (18.77 MB) |
| | | | | Algorithms Part II 6.4 3-way Radix Quicksort (7-22).mp4 (11.91 MB) |
| | | | | Algorithms Part II 6.5 Suffix Arrays (1925).mp4 (55.30 MB) |
| | | [week5] |
| | | | [01-tries] |
| | | | | Algorithms Part II 7.0 R-way Tries (3219).mp4 (61.75 MB) |
| | | | | Algorithms Part II 7.1 Ternary Search Tries (2242).mp4 (29.27 MB) |
| | | | | Algorithms Part II 7.2 Character-Based Operations (2003).mp4 (32.72 MB) |
| | | | [02-substring-search] |
| | | | | Algorithms Part II 8.0 Introduction to Substring Search (642).mp4 (9.04 MB) |
| | | | | Algorithms Part II 8.1 Brute-Force Substring Search (1011).mp4 (14.13 MB) |
| | | | | Algorithms Part II 8.2 Knuth-Morris-Pratt (3314).mp4 (45.04 MB) |
| | | | | Algorithms Part II 8.3 Boyer-Moore (836).mp4 (12.01 MB) |
| | | | | Algorithms Part II 8.4 Rabin-Karp (1613).mp4 (24.58 MB) |
| | | [week6] |
| | | | [01-regular-expressions] |
| | | | | Algorithms Part II 9.0 Regular Expressions (2003).mp4 (30.83 MB) |
| | | | | Algorithms Part II 9.1 REs and NFAs (1314).mp4 (19.06 MB) |
| | | | | Algorithms Part II 9.2 NFA Simulation (1827).mp4 (35.25 MB) |
| | | | | Algorithms Part II 9.3 NFA Construction (1142).mp4 (16.56 MB) |
| | | | | Algorithms Part II 9.4 Regular Expression Applications (2009).mp4 (66.30 MB) |
| | | | [02-data-compression] |
| | | | | Algorithms Part II 10.0 Introduction to Data Compression (2227).mp4 (36.04 MB) |
| | | | | Algorithms Part II 10.1 Run-Length Coding (559).mp4 (9.11 MB) |
| | | | | Algorithms Part II 10.2 Huffman Compression (2414).mp4 (34.02 MB) |
| | | | | Algorithms Part II 10.3 LZW Compression (2733).mp4 (37.15 MB) |
| | | [week7] |
| | | | [01-reductions] |
| | | | | Algorithms Part II 11.0 Introduction to Reductions (925).mp4 (17.45 MB) |
| | | | | Algorithms Part II 11.1 Designing Algorithms (813).mp4 (11.87 MB) |
| | | | | Algorithms Part II 11.2 Establishing Lower Bounds (916).mp4 (16.45 MB) |
| | | | | Algorithms Part II 11.3 Classifying Problems (12-45).mp4 (18.52 MB) |
| | | | [02-linear-programming] |
| | | | | Algorithms Part II 12.0 Brewer-'s Problem (21-15).mp4 (29.77 MB) |
| | | | | Algorithms Part II 12.1 Simplex Algorithm (11-49).mp4 (16.12 MB) |
| | | | | Algorithms Part II 12.2 Simplex Implementations (1621).mp4 (79.71 MB) |
| | | | | Algorithms Part II 12.3 Linear Programming Reductions (11-46).mp4 (20.79 MB) |
| | | | [03-intractability] |
| | | | | Algorithms Part II 13.0 Introduction to Intractability (1700).mp4 (34.49 MB) |
| | | | | Algorithms Part II 13.1 Search Problems (1056).mp4 (21.23 MB) |
| | | | | Algorithms Part II 13.2 P vs. NP (1629).mp4 (29.95 MB) |
| | | | | Algorithms Part II 13.3 Classifying Problems (1343).mp4 (21.37 MB) |
| | | | | Algorithms Part II 13.4 NP-Completeness (1238).mp4 (31.80 MB) |
| | | | | Algorithms Part II 13.5 Coping with Intractability (1401).mp4 (21.66 MB) |
| | [programming-assignments] |
| | | baseball.html (13.83 KB) |
| | | baseball.png (48.33 KB) |
| | | boggle-gui.png (59.14 KB) |
| | | boggle.html (15.14 KB) |
| | | burrows.html (22.07 KB) |
| | | dates.png (10.39 KB) |
| | | dual-gradient.png (81.47 KB) |
| | | HJoceanSmall.png (156.52 KB) |
| | | HJoceanSmallEnergy.png (91.57 KB) |
| | | HJoceanSmallShrunk.png (173.81 KB) |
| | | HJoceanSmallVerticalSeam.png (92.12 KB) |
| | | horizontal-seam.png (158.18 KB) |
| | | pines.png (9.03 KB) |
| | | pins.png (8.66 KB) |
| | | pint.png (9.71 KB) |
| | | Qu.png (3.92 KB) |
| | | README.txt (0.14 KB) |
| | | seamCarving.html (13.60 KB) |
| | | sid.png (8.78 KB) |
| | | tepee.png (9.17 KB) |
| | | vertical-seam.png (164.26 KB) |
| | | wordnet-fig1.png (41.27 KB) |
| | | wordnet-sap.png (9.95 KB) |
| | | wordnet.html (14.84 KB) |
| | README.txt (0.53 KB) |