ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

7,845 results

Inside code
How to solve (almost) any binary tree coding problem

Learn graph theory algorithms: https://inscod.com/graphalgo ⚙ Learn dynamic programming: https://inscod.com/dp_course ...

4:20
How to solve (almost) any binary tree coding problem

283,591 views

5 years ago

mycodeschool
Data structures: Introduction to Trees

See complete series on data structures here: http://www.youtube.com/playlist?list=PL2_aWCzGMAwI3W_JlcBbtYTwiQSsOTa6P ...

15:50
Data structures: Introduction to Trees

1,560,440 views

11 years ago

freeCodeCamp.org
Binary Tree Algorithms for Technical Interviews - Full Course

Learn how to implement binary tree algorithms and how to use them to solve coding challenges. ✏️ This course was ...

1:48:53
Binary Tree Algorithms for Technical Interviews - Full Course

821,787 views

4 years ago

MIT OpenCourseWare
6. Binary Trees, Part 1

MIT 6.006 Introduction to Algorithms, Spring 2020 Instructor: Erik Demaine View the complete course: ...

50:59
6. Binary Trees, Part 1

198,425 views

4 years ago

Spanning Tree
Understanding B-Trees: The Data Structure Behind Modern Databases

B-trees are a popular data structure for storing large amounts of data, frequently seen in databases and file systems. But how do ...

12:39
Understanding B-Trees: The Data Structure Behind Modern Databases

921,356 views

1 year ago

Dr Codie
Data Structures | Graphs Trees | Simple Python Tutorials

This video is as part of series on next level python that looks at the non-linear data structures of graphs and trees that are ...

12:34
Data Structures | Graphs Trees | Simple Python Tutorials

1,283 views

3 years ago

HackerRank
Data Structures: Tries

Learn the basics of tries. This video is a part of HackerRank's Cracking The Coding Interview Tutorial with Gayle Laakmann ...

4:55
Data Structures: Tries

549,353 views

9 years ago

HackerRank
Data Structures: Trees

Learn the basics of trees, data structures. This video is a part of HackerRank's Cracking The Coding Interview Tutorial with Gayle ...

9:57
Data Structures: Trees

1,035,000 views

9 years ago

Tony Saro
The Most Complicated Algorithm I've Ever Written: SQLite B-Tree Balancing

In this video we visualize how the SQLite 2.X.X B-Tree balancing algorithm works. Technically it's not exactly the algorithm from ...

12:53
The Most Complicated Algorithm I've Ever Written: SQLite B-Tree Balancing

55,483 views

1 year ago

MIT OpenCourseWare
R2. 2-3 Trees and B-Trees

MIT 6.046J Design and Analysis of Algorithms, Spring 2015 View the complete course: http://ocw.mit.edu/6-046JS15 Instructor: ...

30:45
R2. 2-3 Trees and B-Trees

238,425 views

9 years ago

Michael Sambol
Red-black trees in 4 minutes — Intro

An introduction to red-black trees. Code: https://github.com/msambol/dsa/blob/master/trees/red_black_tree.py Sources: 1.

3:54
Red-black trees in 4 minutes — Intro

883,027 views

9 years ago

Gate Smashers
L-3.12: Introduction to Trees (Binary Tree, Almost Complete Binary Tree, Full BT, Complete BT, BST)

In this video, Varun sir will explains the basics of Trees in data structures—starting from what a Binary Tree is, to more specific ...

10:45
L-3.12: Introduction to Trees (Binary Tree, Almost Complete Binary Tree, Full BT, Complete BT, BST)

1,455,381 views

5 years ago

MIT OpenCourseWare
Lecture 6: AVL Trees, AVL Sort

MIT 6.006 Introduction to Algorithms, Fall 2011 View the complete course: http://ocw.mit.edu/6-006F11 Instructor: Erik Demaine ...

51:59
Lecture 6: AVL Trees, AVL Sort

693,538 views

12 years ago

Inside code
Trie data structure - Inside code

Soutce code: https://gist.github.com/syphh/61857261582d56cd26819c59cc0f3154 Learn graph theory algorithms: ...

13:26
Trie data structure - Inside code

16,008 views

4 years ago

Geekific
Understanding Recursion With Trees | Trees and Recursion | Recursive Data Structures | Geekific

Discord Community: https://discord.gg/dK6cB24ATp GitHub Repository: https://github.com/geekific-official/ Over the past few ...

5:24
Understanding Recursion With Trees | Trees and Recursion | Recursive Data Structures | Geekific

24,668 views

3 years ago

CS50
CS50x 2025 - Lecture 5 - Data Structures

Abstract Data Types. Queues, Stacks. Linked Lists. Trees, Binary Search Trees. Hash Tables. Tries. *** This is CS50, Harvard ...

2:03:38
CS50x 2025 - Lecture 5 - Data Structures

225,884 views

Streamed 1 year ago

Stable Sort
KD-Tree Nearest Neighbor Data Structure

KD-Tree is a data structure useful when organizing data by several criteria all at once. Consider an example where you have a set ...

6:39
KD-Tree Nearest Neighbor Data Structure

164,734 views

5 years ago

Google for Developers
Let’s Write a Decision Tree Classifier from Scratch - Machine Learning Recipes #8

Hey everyone! Glad to be back! Decision Tree classifiers are intuitive, interpretable, and one of my favorite supervised learning ...

9:53
Let’s Write a Decision Tree Classifier from Scratch - Machine Learning Recipes #8

564,846 views

8 years ago

freeCodeCamp.org
Graph Algorithms for Technical Interviews - Full Course

Learn how to implement graph algorithms and how to use them to solve coding challenges. ✏️ This course was developed by ...

2:12:19
Graph Algorithms for Technical Interviews - Full Course

1,441,512 views

4 years ago

CS50
CS50x 2024 - Lecture 5 - Data Structures

This is CS50, Harvard University's introduction to the intellectual enterprises of computer science and the art of programming.

2:02:49
CS50x 2024 - Lecture 5 - Data Structures

557,696 views

1 year ago

CodeWithHarry
Introduction to Trees

Tree Data Structure: In this video we will see what trees are along with few tree terminologies. We will see root, children, siblings, ...

17:10
Introduction to Trees

565,376 views

5 years ago

Michael Sambol
AVL trees in 5 minutes — Intro & Search

Introduction to AVL trees including the search method. Code: https://github.com/msambol/dsa/tree/master/trees/avl_tree.py ...

5:00
AVL trees in 5 minutes — Intro & Search

143,147 views

2 years ago

Tech With Tim
Data Structures  - Full Course for Beginners

This course will teach you about Data Structures and how they will apply in real-world scenarios, like computer science courses, ...

3:11:08
Data Structures - Full Course for Beginners

30,369 views

3 weeks ago

HackerRank
Data Structures: Heaps

Learn about heaps. This video is a part of HackerRank's Cracking The Coding Interview Tutorial with Gayle Laakmann McDowell.

10:32
Data Structures: Heaps

1,398,745 views

9 years ago

Michael Sambol
B-trees in 4 minutes — Intro

Introduction to B-trees. Code: https://github.com/msambol/dsa/blob/master/trees/b_tree.py Source: Introduction To Algorithms, ...

3:57
B-trees in 4 minutes — Intro

187,694 views

3 years ago