Graph Theory Algorithms Visualized

Torrent Details


Graph theory algorithms visualized

NAME
Graph theory algorithms visualized.torrent
CATEGORY
Other
INFOHASH
f71f4e921a9f46e4486ebd060f7ad6d39057cce6
SIZE
3.1 GB in 98 files
ADDED
Uploaded on 01-03-2023 by our crawler pet called "Spidey".
SWARM
0 seeders & 0 peers
RATING
No votes yet.

Please login to vote for this torrent.


Description

Description

This Graph theory algorithms will teach students the fundamental concepts and algorithms of graph theory with real life examples and eye-appealing visualizations. The course will cover topics such as graph representation, graph traversal, topological sort, shortest paths, minimum spanning trees, graph coloring… With a total of more than 20 covered algorithms.

Discussed algorithms will be implemented in detail by using a programming language to give a better understanding for students. Captions, practice problems, quizzes, slides, and source code will also be here to make the learning experience way better.

By the end of the course, students will have a strong understanding of graph algorithms and be able to apply their knowledge to solve problems in computer science, mathematics, and beyond.

This course is ideal for students who are looking to pursue careers in computer science, mathematics, or related fields, as well as for professionals who want to expand their knowledge of graph theory algorithms.

Covered algorithms:

Graph traversal:
Depth-first search
Breadth-first search
Topological sorting:
Depth-first search based topological sort
Breadth-first search based topological sort (Kahn’s algorithm)
Shortest path:
Dijkstra’s algorithm
Bellman-Ford algorithm
Floyd-Warshall algorithm
Johnson’s algorithm
Shortest path for unweighted graphs algorithm
Shortest path for directed acyclic graphs (1st approach) algorithm
Shortest path for directed acyclic graphs (2nd approach) algorithm
Trees and minimum spanning trees:
Spanning tree algorithm
Graph to out-tree algorithm
Prim’s algorithm
Kruskal’s algorithm
Eulerian/Hamiltonian paths and cycles:
Hierholzer’s algorithm
Hamiltonian cycle backtracking algorithm
Graph coloring:
2-colorability algorithm
k-colorability backtracking algorithm
Greedy coloring algorithm
Welsh-Powell heuristic
DSatur heuristic

Who this course is for:

Computer science students
Data science beginners
Software development beginners

Requirements

Basic programming knowledge
Algorithmic techniques knowledge is preferred (recursion, backtracking, dynamic programming…)
Data structures knowledge is preferred (hash table, queue, stack, set, heap…)

Last Updated 2/2023

Discussion

Comments 0

Post Your Comment

Files in this torrent

FILENAMESIZE
.pad/022 B
TutsNode.net.txt63 B
[TutsNode.net] - Graph theory algorithms visualized/1. Introduction/1. Introduction to graph theory.srt7.1 KB
[TutsNode.net] - Graph theory algorithms visualized/1. Introduction/2. [IMPORTANT] Before we start.html2.8 KB
[TutsNode.net] - Graph theory algorithms visualized/1. Introduction/3. Python crash course (optional).html9 KB
[TutsNode.net] - Graph theory algorithms visualized/1. Introduction/4. Terminology and types of graphs.srt25.3 KB
[TutsNode.net] - Graph theory algorithms visualized/2. Graph representation/1. Adjacency list representation.srt13.8 KB
[TutsNode.net] - Graph theory algorithms visualized/2. Graph representation/1.2 graph_adj_list.py2.8 KB
[TutsNode.net] - Graph theory algorithms visualized/2. Graph representation/1.3 GraphAdjList.java3.5 KB
[TutsNode.net] - Graph theory algorithms visualized/2. Graph representation/2. Adjacency matrix representation.srt9.1 KB
[TutsNode.net] - Graph theory algorithms visualized/2. Graph representation/2.2 graph_adj_mat.py4 KB
[TutsNode.net] - Graph theory algorithms visualized/2. Graph representation/2.3 GraphAdjMat.java5.2 KB
[TutsNode.net] - Graph theory algorithms visualized/2. Graph representation/3. Adjacency list vs adjacency matrix.srt13.8 KB
[TutsNode.net] - Graph theory algorithms visualized/2. Graph representation/4. Quiz Adjacency lists and matrices.html167 B
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/1. Depth-first search (DFS) algorithm.srt24 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/1.2 dfs_visualization.py2.8 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/1.3 Dfs.java1.9 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/1.4 dfs.py1.2 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/2. Problem Path exists in a graph.html1.3 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/3. Solution Path exists in a graph.srt10.5 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/3.2 dfs_path_exists.py1.1 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/3.3 DfsPathExists.java1.5 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/4. Breadth-first search (BFS) algorithm.srt17.2 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/4.1 bfs_visualization.py2.8 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/4.2 Bfs.java2.1 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/4.3 bfs.py1.4 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/5. Problem Minimum edges from start to end.html1 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/6. Solution Minimum edges from start to end.srt8.9 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/6.1 bfs path exists.pptx1008.6 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/6.2 bfs_min_edges.py1 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/6.3 BfsMinEdges.java1.4 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/7. DFS and BFS in implicit graphs.srt11.7 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/7.1 bfs_grid.py1.4 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/7.2 BfsGrid.java1.8 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/7.4 dfs_grid.py1.4 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/7.5 DfsGrid.java1.6 KB
[TutsNode.net] - Graph theory algorithms visualized/3. Graph traversal/7.6 Flood fill algorithm YouTube video.html104 B
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/1. What is topological sort.srt10.9 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/2. DFS-based topological sort algorithm.srt18.8 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/2.2 topsort_dfs.py1.3 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/2.3 TopsortDfs.java2.2 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/3. BFS-based topological sort algorithm (Kahn's algorithm).srt16.5 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/3.2 topsort_bfs.py1.3 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/3.3 TopsortBfs.java2.2 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/4. Problem Find all possible recipes.html1.4 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/5. Solution Find all possible recipes problem.srt14.7 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/5.2 find_possible_recipes.py2 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/5.3 FindPossibleRecipes.java2.9 KB
[TutsNode.net] - Graph theory algorithms visualized/4. Topological sort/6. Quiz Topological sort.html167 B
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/1. Introduction.srt4.4 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/2. Dijkstra's algorithm.mp4213.5 MB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/2. Dijkstra's algorithm.srt49.8 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/2.1 Binary heaps YouTube video.html104 B
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/2.2 Dijkstra.java3.8 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/2.3 dijkstra.py2 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/2.5 FibonacciHeap.java23.8 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/2.6 Tuple.java284 B
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/3. Bellman-Ford algorithm.mp4200.6 MB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/3. Bellman-Ford algorithm.srt34.4 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/3.2 bellman_ford.py3.2 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/3.3 BellmanFord.java5.8 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/3.4 Edge.java557 B
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/3.5 Tuple.java284 B
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/4. Floyd-Warshall algorithm.srt36 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/4.2 floyd_warshall.py2.2 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/4.3 FloydWarshall.java3.8 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/5. Johnson's algorithm.srt13.2 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/5.1 Johnson.java3.9 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/6. Shortest path in unweighted graphs.srt8.5 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/6.3 ShortestPathUnweighted.java3.5 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/7. Shortest path in directed acyclic graphs.srt16.5 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/7.2 shortest_path_dag.py4.2 KB
[TutsNode.net] - Graph theory algorithms visualized/5. Shortest path problem/7.3 ShortestPathDAG.java6.5 KB
[TutsNode.net] - Graph theory algorithms visualized/6. Trees/1. What is a tree.srt14.1 KB
[TutsNode.net] - Graph theory algorithms visualized/6. Trees/1.2 IsTree.java3.5 KB
[TutsNode.net] - Graph theory algorithms visualized/6. Trees/2. Out-trees (arborescence) and graph to out-tree conversion.srt7.8 KB
[TutsNode.net] - Graph theory algorithms visualized/6. Trees/3. Solution All nodes distance k in a tree problem.srt10.4 KB
[TutsNode.net] - Graph theory algorithms visualized/6. Trees/3.2 DistanceK.java4.2 KB
[TutsNode.net] - Graph theory algorithms visualized/7. Minimum spanning trees/1. What is a (minimum) spanning tree.srt10.3 KB
[TutsNode.net] - Graph theory algorithms visualized/7. Minimum spanning trees/2. Prim's algorithm.srt26.5 KB
[TutsNode.net] - Graph theory algorithms visualized/7. Minimum spanning trees/2.1 FibonacciHeap.java23.8 KB
[TutsNode.net] - Graph theory algorithms visualized/7. Minimum spanning trees/2.2 Prim.java3.5 KB
[TutsNode.net] - Graph theory algorithms visualized/7. Minimum spanning trees/3. Kruskal's algorithm.srt14 KB
[TutsNode.net] - Graph theory algorithms visualized/7. Minimum spanning trees/3.3 Kruskal.java3.5 KB
[TutsNode.net] - Graph theory algorithms visualized/7. Minimum spanning trees/5. Solution Min cost to connect all points problem.srt6.3 KB
[TutsNode.net] - Graph theory algorithms visualized/8. Eulerian and Hamiltonian pathscycles/1. What is a Eulerian pathcycle.srt10.6 KB
[TutsNode.net] - Graph theory algorithms visualized/8. Eulerian and Hamiltonian pathscycles/2. Hierholzer's algorithm.srt22.5 KB
[TutsNode.net] - Graph theory algorithms visualized/8. Eulerian and Hamiltonian pathscycles/4. Solution Reconstruct itinerary.srt6.5 KB
[TutsNode.net] - Graph theory algorithms visualized/8. Eulerian and Hamiltonian pathscycles/5. What is a Hamiltonian pathcycle.srt7.6 KB
[TutsNode.net] - Graph theory algorithms visualized/8. Eulerian and Hamiltonian pathscycles/6. Hamiltonian pathcycle finding algorithms.srt11.8 KB
[TutsNode.net] - Graph theory algorithms visualized/9. Graph coloring/1. Introduction to graph coloring.srt17.4 KB
[TutsNode.net] - Graph theory algorithms visualized/9. Graph coloring/2. Checking 2-colorability (bipartite graph).srt11.6 KB
[TutsNode.net] - Graph theory algorithms visualized/9. Graph coloring/2.3 TwoColorability.java3.3 KB
[TutsNode.net] - Graph theory algorithms visualized/9. Graph coloring/3. Checking k-colorability with backtracking.srt14 KB
[TutsNode.net] - Graph theory algorithms visualized/9. Graph coloring/4. Greedy coloring.srt13 KB
[TutsNode.net] - Graph theory algorithms visualized/9. Graph coloring/5. Heuristics (Welsh-Powell, DSatur).srt23.9 KB
[TutsNode.net] - Graph theory algorithms visualized/9. Graph coloring/7. Solution Let's make a Sudoku solver.srt13.8 KB
[TutsNode.net] - Graph theory algorithms visualized/9. Graph coloring/7.3 SudokuSolver.java3.2 KB

Alternative Torrents for 'Graph theory algorithms visualized'.

There are no alternative torrents found.