Instructional Video8:43
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Kruskal's Algorithm For a Minimal Spanning Tree

Higher Ed
Kruskal's algorithm is another greedy algorithm to find a minimal spanning tree. This clip is from the chapter "Spanning Tree Algorithms" of the series "From 0 to 1: Data Structures & Algorithms in Java".Prim's algorithm is very similar...
Instructional Video12:39
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Introduction To Shortest Path In An Unweighted Graph - The Distance Table

Higher Ed
Graphs with simple edges (directed or undirected) are unweighted graphs. The distance table is an important data structure used to find the shortest path between any two vertices on a graph. This clip is from the chapter "Shortest Path...
Instructional Video15:41
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Introducing The Graph

Higher Ed
Study of graphs and algorithms associated with graphs forms an entire field of study called graph theory. This clip is from the chapter "Graphs" of the series "From 0 to 1: Data Structures & Algorithms in Java".The author introduces you...
Instructional Video7:22
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Types Of Graphs

Higher Ed
A graph with directed edges forms a Directed Graph and those with undirected edges forms an Undirected Graph. This clip is from the chapter "Graphs" of the series "From 0 to 1: Data Structures & Algorithms in Java".The author introduces...
Instructional Video23:59
Globalive Media

Beyond Innovation: Episode 16

Higher Ed
A cyborg startup blends man with machine, an algorithm masters audio recordings and robots manage a vegetable garden. Plus, Anthony and Michael speak with a scientist pioneering batteries that are safe to eat. Hosted by venture...
Instructional Video23:52
Globalive Media

Beyond Innovation: Episode 4

Higher Ed
A startup makes insurance a snap, entrepreneurs go globetrotting and a software platform democratizes design. Plus, Anthony and Michael explore a way to make money from playing video games. Hosted by venture capitalist Anthony Lacavera...
Instructional Video3:41
Fun Robotics

Understanding Confusion Matrix

Higher Ed
Explains how to read a confusion matrix
Instructional Video14:14
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Reading from and writing to files

Higher Ed
Detailed look at string concatenation, indexing and slicing This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is about Python in-depth.
Instructional Video8:15
Curated Video

Complete Modern C++ - Algorithms - Part I

Higher Ed
This video is an introduction to common algorithms. This clip is from the chapter "Standard Template Library" of the series "Complete Modern C++".This section is the description of the standard template library.
Instructional Video11:23
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - The Bellman Ford Algorithm Visualized

Higher Ed
Visualize how the Bellman Ford works to find the shortest path in a graph with negative weighted edges. This clip is from the chapter "Shortest Path Algorithms" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this...
Instructional Video14:15
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - The Shortest Path Algorithm Visualized

Higher Ed
Visualize the shortest path algorithm using the distance table, step by step. This clip is from the chapter "Shortest Path Algorithms" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we are introduced...
Instructional Video7:36
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Dealing With Negative Cycles In The Bellman Ford Algorithm

Higher Ed
If a graph has a negative cycle then it's impossible to find a shortest path as every round of the cycle makes the path shorter! This clip is from the chapter "Shortest Path Algorithms" of the series "From 0 to 1: Data Structures &...
Instructional Video3:08
Curated Video

Implement a decision tree : Working of a Decision Tree

Higher Ed
From the section: Mastering Kaggle Titanic Competition Using Random Forest. The module will cover Random Forest and thus cover decision trees and will encourage the student to make a Kaggle submission and introduce them to the online...
Instructional Video5:59
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Download and install Python

Higher Ed
Explore various options available and download Python 3 This clip is from the chapter "Development environment setup" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section describes the development...
Instructional Video10:53
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Sorting Trade-Offs

Higher Ed
Let’s understand characteristics which can be used to determine which sorting algorithm is the right one for a system. This clip is from the chapter "Sorting and Searching" of the series "From 0 to 1: Data Structures & Algorithms in...
Instructional Video11:22
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Match Parenthesis To Check A Well Formed Expression

Higher Ed
Matching parenthesis to check for well-formed expressions helps us solve this using the stack we're already implemented. This clip is from the chapter "Stacks And Queues" of the series "From 0 to 1: Data Structures & Algorithms in...
Instructional Video10:25
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Linked List Problems

Higher Ed
Learn how to traverse and linked lists, add elements to a list and count the number of elements in a list. This clip is from the chapter "Linked Lists" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we...
Instructional Video19:55
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - The Linked List - The Most Basic Of All Data Structures

Higher Ed
Linked lists are less interesting in Java then in other programming languages such as C and C++ which require the developer to manage memory. Learn more about it. This clip is from the chapter "Linked Lists" of the series "From 0 to 1:...
Instructional Video14:15
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Dijkstra's Algorithm Visualized

Higher Ed
Dijkstra's algorithm is a greedy algorithm to find the shortest path in a weighted graph. This clip is from the chapter "Shortest Path Algorithms" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we are...
Instructional Video3:03
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - You, This course and Us

Higher Ed
This clip is from the chapter "What this course is about" of the series "From 0 to 1: Data Structures & Algorithms in Java".The author introduces herself and the course in this section of the course.
Instructional Video3:21
Packt

Compare the breadth-first and depth-first search algorithms : What Are We Searching for?

Higher Ed
From the section: Searching in Graphs. In this section, we will see what we are searching for. Also, we will look at how to use and implement Breadth-First Search and Depth-First Search along with a simple puzzle game example. What does...
Instructional Video8:06
Curated Video

C++ Programming By Example - Use STL Algorithms with Containers

Higher Ed
How do you use STL algorithms with C++ containers? • Explain iterators • Show examples to further illustrate how they work • Analyze the results of the examples via print statements This clip is from the chapter "Data Structures and...
Instructional Video14:17
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Shell Sort

Higher Ed
Shell sort builds on top of insertion sort, it improves the complexity of the running time by partitioning the list in a clever way. This clip is from the chapter "Sorting and Searching" of the series "From 0 to 1: Data Structures &...
Instructional Video14:40
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Bubble Sort

Higher Ed
Bubble sort has an adaptive sort with the same time complexity as selection sort. This clip is from the chapter "Sorting and Searching" of the series "From 0 to 1: Data Structures & Algorithms in Java".Learn about various sorting and...