Coursera
Explorar
  • Navegar
  • Pesquisar
  • For Enterprise
  • Entrar
  • Criar conta

Algorithms, Part II

Visão geralProgramaPerguntas frequentesDesenvolvedoresClassificações e avaliações
Página inicialCiência da ComputaçãoAlgoritmos

Algorithms, Part II

Universidade de Princeton

Informações sobre o curso: This course covers the essential information that every serious programmer needs to know about algorithms and data structures, with emphasis on applications and scientific performance analysis of Java implementations. Part I covers elementary data structures, sorting, and searching algorithms. Part II focuses on graph- and string-processing algorithms.

Para quem é direcionado este curso: While this course was originally designed for first- and second-year undergraduates, it is appropriate not only for college students but also for professionals. Two-thirds of our learners are college graduates working in industry.


Desenvolvido por:  Universidade de Princeton
Universidade de Princeton

  • Robert Sedgewick

    Ministrado por:  Robert Sedgewick, William O. Baker *39 Professor of Computer Science

    Computer Science

  • Kevin Wayne

    Ministrado por:  Kevin Wayne, Senior Lecturer

    Computer Science
NívelIntermediate
Compromisso6 weeks of study, 6–10 hours per week.
Idioma
English
Como ser aprovadoSeja aprovado em todas as tarefas para concluir o curso.
Classificação do usuário
5.0 estrelas
Classificação média do usuário 5.0Veja o que os aprendizes disseram
Programa
SEMANA 1
Introduction
Welcome to Algorithms, Part II.
1 vídeo, 2 leituras
  1. Reading: Welcome to Algorithms, Part II
  2. Reading: Lecture Slides
  3. Vídeo: Course Introduction
Undirected Graphs
We define an undirected graph API and consider the adjacency-matrix and adjacency-lists representations. We introduce two classic algorithms for searching a graph—depth-first search and breadth-first search. We also consider the problem of computing connected components and conclude with related problems and applications.
6 vídeos, 2 leituras, 1 questionário de prática
  1. Reading: Overview
  2. Reading: Lecture Slides
  3. Vídeo: Introduction to Graphs
  4. Vídeo: Graph API
  5. Vídeo: Depth-First Search
  6. Vídeo: Breadth-First Search
  7. Vídeo: Connected Components
  8. Vídeo: Graph Challenges
  9. Practice Quiz: Interview Questions: Undirected Graphs (ungraded)
Directed Graphs
In this lecture we study directed graphs. We begin with depth-first search and breadth-first search in digraphs and describe applications ranging from garbage collection to web crawling. Next, we introduce a depth-first search based algorithm for computing the topological order of an acyclic digraph. Finally, we implement the Kosaraju−Sharir algorithm for computing the strong components of a digraph.
5 vídeos, 1 leitura, 1 questionário de prática
  1. Reading: Lecture Slides
  2. Vídeo: Introduction to Digraphs
  3. Vídeo: Digraph API
  4. Vídeo: Digraph Search
  5. Vídeo: Topological Sort
  6. Vídeo: Strong Components
  7. Practice Quiz: Interview Questions: Directed Graphs (ungraded)
Nota atribuída: WordNet
SEMANA 2
Minimum Spanning Trees
In this lecture we study the minimum spanning tree problem. We begin by considering a generic greedy algorithm for the problem. Next, we consider and implement two classic algorithm for the problem—Kruskal's algorithm and Prim's algorithm. We conclude with some applications and open problems.
6 vídeos, 2 leituras, 1 questionário de prática
  1. Reading: Overview
  2. Reading: Lecture Slides
  3. Vídeo: Introduction to MSTs
  4. Vídeo: Greedy Algorithm
  5. Vídeo: Edge-Weighted Graph API
  6. Vídeo: Kruskal's Algorithm
  7. Vídeo: Prim's Algorithm
  8. Vídeo: MST Context
  9. Practice Quiz: Interview Questions: Minimum Spanning Trees (ungraded)
Shortest Paths
In this lecture we study shortest-paths problems. We begin by analyzing some basic properties of shortest paths and a generic algorithm for the problem. We introduce and analyze Dijkstra's algorithm for shortest-paths problems with nonnegative weights. Next, we consider an even faster algorithm for DAGs, which works even if the weights are negative. We conclude with the Bellman−Ford−Moore algorithm for edge-weighted digraphs with no negative cycles. We also consider applications ranging from content-aware fill to arbitrage.
5 vídeos, 1 leitura, 1 questionário de prática
  1. Reading: Lecture Slides
  2. Vídeo: Shortest Paths APIs
  3. Vídeo: Shortest Path Properties
  4. Vídeo: Dijkstra's Algorithm
  5. Vídeo: Edge-Weighted DAGs
  6. Vídeo: Negative Weights
  7. Practice Quiz: Interview Questions: Shortest Paths (ungraded)
Nota atribuída: Seam Carving
SEMANA 3
Maximum Flow and Minimum Cut
In this lecture we introduce the maximum flow and minimum cut problems. We begin with the Ford−Fulkerson algorithm. To analyze its correctness, we establish the maxflow−mincut theorem. Next, we consider an efficient implementation of the Ford−Fulkerson algorithm, using the shortest augmenting path rule. Finally, we consider applications, including bipartite matching and baseball elimination.
6 vídeos, 2 leituras, 1 questionário de prática
  1. Reading: Overview
  2. Reading: Lecture Slides
  3. Vídeo: Introduction to Maxflow
  4. Vídeo: Ford–Fulkerson Algorithm
  5. Vídeo: Maxflow–Mincut Theorem
  6. Vídeo: Running Time Analysis
  7. Vídeo: Java Implementation
  8. Vídeo: Maxflow Applications
  9. Practice Quiz: Interview Questions: Maximum Flow (ungraded)
Nota atribuída: Baseball Elimination
Radix Sorts
In this lecture we consider specialized sorting algorithms for strings and related objects. We begin with a subroutine to sort integers in a small range. We then consider two classic radix sorting algorithms—LSD and MSD radix sorts. Next, we consider an especially efficient variant, which is a hybrid of MSD radix sort and quicksort known as 3-way radix quicksort. We conclude with suffix sorting and related applications.
6 vídeos, 1 leitura, 1 questionário de prática
  1. Reading: Lecture Slides
  2. Vídeo: Strings in Java
  3. Vídeo: Key-Indexed Counting
  4. Vídeo: LSD Radix Sort
  5. Vídeo: MSD Radix Sort
  6. Vídeo: 3-way Radix Quicksort
  7. Vídeo: Suffix Arrays
  8. Practice Quiz: Interview Questions: Radix Sorts (ungraded)
SEMANA 4
Tries
In this lecture we consider specialized algorithms for symbol tables with string keys. Our goal is a data structure that is as fast as hashing and even more flexible than binary search trees. We begin with multiway tries; next we consider ternary search tries. Finally, we consider character-based operations, including prefix match and longest prefix, and related applications.
3 vídeos, 2 leituras, 1 questionário de prática
  1. Reading: Overview
  2. Reading: Lecture Slides
  3. Vídeo: R-way Tries
  4. Vídeo: Ternary Search Tries
  5. Vídeo: Character-Based Operations
  6. Practice Quiz: Interview Questions: Tries (ungraded)
Substring Search
In this lecture we consider algorithms for searching for a substring in a piece of text. We begin with a brute-force algorithm, whose running time is quadratic in the worst case. Next, we consider the ingenious Knuth−Morris−Pratt algorithm whose running time is guaranteed to be linear in the worst case. Then, we introduce the Boyer−Moore algorithm, whose running time is sublinear on typical inputs. Finally, we consider the Rabin−Karp fingerprint algorithm, which uses hashing in a clever way to solve the substring search and related problems.
5 vídeos, 1 leitura, 1 questionário de prática
  1. Reading: Lecture Slides
  2. Vídeo: Introduction to Substring Search
  3. Vídeo: Brute-Force Substring Search
  4. Vídeo: Knuth–Morris–Pratt
  5. Vídeo: Boyer–Moore
  6. Vídeo: Rabin–Karp
  7. Practice Quiz: Interview Questions: Substring Search (ungraded)
Nota atribuída: Boggle
SEMANA 5
Regular Expressions
A regular expression is a method for specifying a set of strings. Our topic for this lecture is the famous grep algorithm that determines whether a given text contains any substring from the set. We examine an efficient implementation that makes use of our digraph reachability implementation from Week 1.
5 vídeos, 2 leituras, 1 questionário de prática
  1. Reading: Overview
  2. Reading: Lecture Slides
  3. Vídeo: Regular Expressions
  4. Vídeo: REs and NFAs
  5. Vídeo: NFA Simulation
  6. Vídeo: NFA Construction
  7. Vídeo: Regular Expression Applications
  8. Practice Quiz: Interview Questions: Regular Expressions (ungraded)
Data Compression
We study and implement several classic data compression schemes, including run-length coding, Huffman compression, and LZW compression. We develop efficient implementations from first principles using a Java library for manipulating binary data that we developed for this purpose, based on priority queue and symbol table implementations from earlier lectures.
4 vídeos, 1 leitura, 1 questionário de prática
  1. Reading: Lecture Slides
  2. Vídeo: Introduction to Data Compression
  3. Vídeo: Run-Length Coding
  4. Vídeo: Huffman Compression
  5. Vídeo: LZW Compression
  6. Practice Quiz: Interview Questions: Data Compression (ungraded)
Nota atribuída: Burrows–Wheeler
SEMANA 6
Reductions
Our lectures this week are centered on the idea of problem-solving models like maxflow and shortest path, where a new problem can be formulated as an instance of one of those problems, and then solved with a classic and efficient algorithm. To complete the course, we describe the classic unsolved problem from theoretical computer science that is centered on the concept of algorithm efficiency and guides us in the search for efficient solutions to difficult problems.
4 vídeos, 2 leituras, 1 questionário de prática
  1. Reading: Overview
  2. Reading: Lecture Slides
  3. Vídeo: Introduction to Reductions
  4. Vídeo: Designing Algorithms
  5. Vídeo: Establishing Lower Bounds
  6. Vídeo: Classifying Problems
  7. Practice Quiz: Interview Questions: Reductions (ungraded)
Linear Programming (optional)
The quintessential problem-solving model is known as linear programming, and the simplex method for solving it is one of the most widely used algorithms. In this lecture, we given an overview of this central topic in operations research and describe its relationship to algorithms that we have considered.
4 vídeos, 1 leitura, 1 questionário de prática
  1. Reading: Lecture Slides
  2. Vídeo: Brewer's Problem
  3. Vídeo: Simplex Algorithm
  4. Vídeo: Simplex Implementations
  5. Vídeo: Linear Programming Reductions
  6. Practice Quiz: Interview Questions: Linear Programming (ungraded)
Intractability
Is there a universal problem-solving model to which all problems that we would like to solve reduce and for which we know an efficient algorithm? You may be surprised to learn that we do no know the answer to this question. In this lecture we introduce the complexity classes P, NP, and NP-complete, pose the famous P = NP question, and consider implications in the context of algorithms that we have treated in this course.
6 vídeos, 1 leitura, 1 questionário de prática
  1. Reading: Lecture Slides
  2. Vídeo: Introduction to Intractability
  3. Vídeo: Search Problems
  4. Vídeo: P vs. NP
  5. Vídeo: Classifying Problems
  6. Vídeo: NP-Completeness
  7. Vídeo: Coping with Intractability
  8. Practice Quiz: Interview Questions: Intractability (ungraded)

Perguntas frequentes
Como funciona
Coursework
Coursework

Each course is like an interactive textbook, featuring pre-recorded videos, quizzes and projects.

Help from Your Peers
Help from Your Peers

Connect with thousands of other learners and debate ideas, discuss course material, and get help mastering concepts.

Desenvolvedores
Universidade de Princeton
Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.
Classificações e avaliações
Avaliado em 5 de 5 decorrente de 338 avaliações

c

very good, and challenge, nice

ChristopherKing

The Algorithms courses must be the best course series in coursera.

SP

great course similar to part 1. I recommend this to anyone who would like to learn Algorithms and Datastructures

VR

Very well structured course on Algorithms and advanced data structures. Highly advised to anyone pursuing career in programming field.



Talvez você também goste de
University of California, San Diego, National Research University Higher School of Economics
Algorithms on Graphs
1 curso
University of California, San Diego, National Research University Higher School of Economics
Algorithms on Graphs
Visualizar curso
University of California, San Diego, National Research University Higher School of Economics
Algorithms on Strings
1 curso
University of California, San Diego, National Research University Higher School of Economics
Algorithms on Strings
Visualizar curso
University of California, San Diego, National Research University Higher School of Economics
Advanced Algorithms and Complexity
1 curso
University of California, San Diego, National Research University Higher School of Economics
Advanced Algorithms and Complexity
Visualizar curso
Stanford University
Greedy Algorithms, Minimum Spanning Trees, and Dynamic Programming
1 curso
Stanford University
Greedy Algorithms, Minimum Spanning Trees, and Dynamic Programming
Visualizar curso
University of California, San Diego, National Research University Higher School of Economics
Data Structures
1 curso
University of California, San Diego, National Research University Higher School of Economics
Data Structures
Visualizar curso
Coursera
O Coursera proporciona acesso universal à melhor educação do mundo fazendo parcerias com as melhores universidades e organizações para oferecer cursos on-line.
© 2018 Coursera Inc. Todos os direitos reservados.
Baixar na App StoreBaixar no Google Play
  • Coursera
  • Sobre
  • Liderança
  • Carreiras
  • Lista de cursos
  • Certificados
  • Notas
  • Para negócios
  • For Government
  • Comunidade
  • parceiros
  • Orientadores
  • Tradutores
  • Desenvolvedores
  • Testadores beta
  • Conectar
  • Blog
  • Facebook
  • LinkedIn
  • Twitter
  • Google+
  • Tech Blog
  • Mais
  • Termos
  • Privacidade
  • Ajuda
  • Acessibilidade
  • Imprensa
  • Contato
  • Diretório
  • Afiliados