* Cantinho Satkeys

Refresh History
  • JP: try65hytr Pessoal  4tj97u<z 2dgh8i k7y8j0 classic
    26 de Junho de 2026, 05:05
  • cereal killa: ghyt74 e continuaçao bom sao joao  wwd46l0'
    24 de Junho de 2026, 12:16
  • JP: try65hytr Pessoal  4tj97u<z 2dgh8i k7y8j0 xe4s
    24 de Junho de 2026, 04:05
  • FELISCUNHA: ghyt74   4tj97u<z e bom São João  h7i37
    23 de Junho de 2026, 10:55
  • j.s.: dgtgtr a todos  49E09B4F
    20 de Junho de 2026, 15:51
  • FELISCUNHA: ghyt74   49E09B4F  e bom fim de semana  4tj97u<z
    20 de Junho de 2026, 11:31
  • JP: try65hytr Pessoal  4tj97u<z 2dgh8i k7y8j0
    19 de Junho de 2026, 04:41
  • romi: Beleza
    19 de Junho de 2026, 04:28
  • cereal killa: try65hytr pessoal  2dgh8i
    18 de Junho de 2026, 23:28
  • JP: dgtgtr Pessoal  2dgh8i k7y8j0 r4v8p
    18 de Junho de 2026, 19:48
  • joaozinho_bosco: boas tardes.......há quanto tempo
    18 de Junho de 2026, 14:35
  • j.s.: dgtgtr a todos  49E09B4F
    16 de Junho de 2026, 18:24
  • JP: try65hytr Pessoal  2dgh8i k7y8j0 classic
    16 de Junho de 2026, 05:44
  • j.s.: bom fim de semana  4tj97u<z
    13 de Junho de 2026, 11:23
  • j.s.: ghyt74 a todos  49E09B4F
    13 de Junho de 2026, 11:23
  • JP: try65hytr A Todos  4tj97u<z 2dgh8i k7y8j0 r4v8p
    12 de Junho de 2026, 05:28
  • JP: try65hytr Pessoal  2dgh8i k7y8j0 yu7gh8
    10 de Junho de 2026, 03:47
  • j.s.: passem por aqui [link]
    09 de Junho de 2026, 20:57
  • j.s.: um anonimo contribuiu com €10,00  h7t45
    09 de Junho de 2026, 20:56
  • j.s.: try65hytr a todos  49E09B4F
    09 de Junho de 2026, 20:56

Autor Tópico: C++ Algorithm Series Graphs  (Lida 585 vezes)

0 Membros e 1 Visitante estão a ver este tópico.

Offline mitsumi

  • Sub-Administrador
  • ****
  • Mensagens: 133947
  • Karma: +0/-0
C++ Algorithm Series Graphs
« em: 24 de Julho de 2019, 11:20 »

C++ Algorithm Series: Graphs
MP4 | Video: AVC 1280x720 | Audio: AAC 44KHz 2ch | Duration: 3 Hours | 464 MB
Genre: eLearning | Language: English

Introducing Graphs. This first topic in this Graphs course explains the concept of graphs. A graph is a data structure which is represented as a finite set of nodes and edges. The nodes in a graph are called "vertices" and edges connect any two vertices. Explore graph use cases. Know the important graph concepts of adjacent, degree, in-degree, out-degree, path, connected graph, subgraph, connected component, tree, forest, and minimum spanning tree.
How a Computer Sees a Graph. This second topic in this Graphs course explains how to represent undirected and directed graphs in memory. All of the graph concepts from the first video are shown how they will look through the eyes of a computer. Practice the Edge List, Adjacency Matrix, and Adjacency List Approaches.
Implementing the Adjacency List Approach for Integers in C++. This third topic in this C++ Graphs course explains how to implement the very efficient Adjacency List Approach in C++ for integers. Follow along with Advait in this hands-on session.
Implementing the Adjacency List Approach for any Data Type in C++. This fourth topic in this C++ Graphs course explains how to implement the very efficient Adjacency List approach in C++ for any data type (not just integers). Follow along with Advait in this hands-on session as you create an Instagram follower graph.
Implementing Graph Traversal Algorithms C++. This fifth topic in this C++ Graphs course explains how to implement graph traversal algorithms in C++. A graph traversal algorithm is a method to traverse all of the nodes of a particular graph. There are two kinds of graph traversal algorithms: Breadth-First-Search (BFS) and Depth-First-Search (DFS). Follow along with Advait in this hands-on session as you create your first BFS algorithm in C++.
Implementing the Breadth-First-Search (BFS) to find the SSSP in C++. This sixth topic in this C++ Graphs course explains how to implement the Breadth-First-Search (BFS) algorithm to find the Single Source Shortest Path (SSSP) in C++. Follow along with Advait in this hands-on session.
Creating a Chutes and Ladders Game Using the SSSP in C++. This seventh topic in this C++ Graphs course reinforces the Single Source Shortest Path (SSSP) algorithm in C++. Follow along with Advait in this hands-on session as you create a Chutes and Ladders Game Using SSSP in C++.
Implementing the Depth First Search (DFS) Algorithm in C++. This eighth topic in this C++ Graphs course explains how to implement the Depth First Search (DFS) Algorithm in C++. Follow along with Advait in this hands-on session.
Finding the Number of Connected Components in a Graph Using the Depth First Search (DFS) Algorithm in C++. This ninth topic in this C++ Graphs course explains how to find the number of connected components in a graph using the Depth First Search (DFS) algorithm in C++. Follow along with Advait in this hands-on session.
Implementing a Topological Sort using the Depth First Search (DFS) Algorithm in C++. This tenth topic in this C++ Graphs course explains how to implement a topological sort using the Depth First Search (DFS) algorithm in C++. Follow along with Advait in this hands-on session.
Implementing a Topological Sort using the Breadth First Search (BFS) Algorithm in C++. This 11th topic in this C++ Graphs course explains how to implement a topological sort using the Breadth First Search (BFS) algorithm in C++. Follow along with Advait in this hands-on session as you apply Kahn's Algorithm, which is a slight modification of the BFS algorithm.
Implementing Cycle Detection in Undirected Graphs using BFS in C++. This 12th topic in this C++ Graphs course explains how to perform cycle detection in undirected graphs using the Breadth First Search (BFS) algorithm in C++. Follow along with Advait in this hands-on session.
Implementing Cycle Detection in Directed                                                                                                                                                                                                Graphs using DFS in C++. This 13th topic in this C++ Graphs course explains how to perform cycle detection in directed graphs using the Depth First Search (DFS) algorithm in C++. Follow along with Advait in this hands-on session.
             

               

Download link:
Só visivel para registados e com resposta ao tópico.

Only visible to registered and with a reply to the topic.

Links are Interchangeable - No Password - Single Extraction