Instructional Video1:51
Curated Video

C++ Standard Template Library in Practice - Section 3 Review

Higher Ed
We want to review what we have covered in this section, and see what will be there in the following sections. • We want to review what we covered • Go over the covered topics • Talk about whats coming up in the next section This clip is...
Instructional Video4:35
Curated Video

C++ Standard Template Library in Practice - Introduction to Algorithms

Higher Ed
In this video, we shall cover the role of algorithms, also describing some of their limitations. • The user is unfamiliar with algorithms and they need to get up to speed with this • Show them the different types of algorithms available...
Instructional Video7:59
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Project: Job Scheduler execution flow

Higher Ed
Visualization of how a hashmap works to achieve O(1) complexity/performance This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data Structures".null
Instructional Video6:41
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Project: Job Scheduler using Binary Search Trees - Introduction

Higher Ed
Go through implementation steps from concluded project This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data Structures".null
Instructional Video5:56
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Project: Use hash structure in a practical exercise - Quote finder

Higher Ed
A look at basic searching techniques and the bisection search algorithm This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data Structures".null
Instructional Video2:20
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Project phase 3: Add functions, calculate and analyze runtime

Higher Ed
Programmatic visual of execution steps performed by the insertion sort algorithm as it sorts a list of 5 elements This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3:...
Instructional Video12:43
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Numbers, math, type casting and input

Higher Ed
Conclude our look at iterators, generators and popular functions associated with them with while loops and enumerate and zip functions This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python,...
Instructional Video3:27
Curated Video

Mastering Swift 2 Programming (Video 33)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video1:08
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - In-depth look at execution context of recursive divide function

Higher Ed
Final project kickoff and look at objective and motivation for building the project This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms,...
Instructional Video5:00
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Insertion sort demonstration and assignment handoff

Higher Ed
Complete merge function - add remaining items This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is about...
Instructional Video13:39
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Setup Atom as text editor (setup used in this course)

Higher Ed
Download and customize the Atom text editor. This is the editor used in this course throughout This clip is from the chapter "Development environment setup" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This...
Instructional Video16:54
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Building A Stack Using Java

Higher Ed
Here, we build a stack for real using Java. It'll have all the operations we're interested in - push, pop, peek, size etc. This clip is from the chapter "Stacks And Queues" of the series "From 0 to 1: Data Structures & Algorithms in...
Instructional Video19:14
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - What is the complexity of these pieces of code?

Higher Ed
Practice finding the complexity of some sample pieces of code. This clip is from the chapter "Complexity Analysis and the Big-O Notation" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we learn about...
Instructional Video17:27
Curated Video

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

Higher Ed
A minimal spanning tree is a tree which covers all the vertices of graph and has the lowest cost. This clip is from the chapter "Spanning Tree Algorithms" of the series "From 0 to 1: Data Structures & Algorithms in Java".Prim's algorithm...
Instructional Video3:09
Curated Video

Multi-Paradigm Programming with Modern C++ - Manipulating Data

Higher Ed
Real-world programs manipulate data in numerous ways. You will need filtering, conversions, transformations, and so on. There is always a temptation to write a loop, but STL algorithms are preferable. • How many ways are there to write a...
Instructional Video3:49
Curated Video

Complete Modern C++ - Parallel Algorithms - I

Higher Ed
In this video, we will get introduced to the parallel algorithms introduced in C++17. This clip is from the chapter "C++17 Standard Library Components" of the series "Complete Modern C++".null
Instructional Video16:40
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Section final project objective and motivation

Higher Ed
Implement the bubble sort algorithm step by step This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is...
Instructional Video13:02
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Project phase 1: Build random int list generator

Higher Ed
Implement the selection sort algorithm step by step This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is...
Instructional Video5:09
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Implement merge function - part 3

Higher Ed
A visual look at the Quicksort algorithm This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is about...
Instructional Video12:17
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Generators - under the hood

Higher Ed
An introductory look at branching and how it works including real code examples from projects built in the course in later sections This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python,...
Instructional Video10:39
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Classes and objects - an introductory look

Higher Ed
Explore lambda expressions and use them in conjunction with other functions like map 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...
Instructional Video13:03
Curated Video

From 0 to 1 Data Structures & Algorithms in Java - Meet The Binary Tree - A Hierarchical Data Structure

Higher Ed
Let's see what a binary tree looks like and learn some simple terminology associated with the tree. This clip is from the chapter "Binary Trees" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we study...
Instructional Video3:43
Curated Video

C++ Standard Template Library in Practice - Numeric Algorithms - std::gcd, and std::lcm

Higher Ed
The listener is new to algorithms and does not know about the numeric algorithms. • Introduce the listener to the std::gcd, and std::lcm algorithm • Show how it works and explain the different versions available • Reinforce the lesson...
Instructional Video8:49
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Project handoff: Bringing it together

Higher Ed
Project execution and completion for quote finder using the implemented hash table class This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data...