Completed
Linked Lists Introduction
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Data Structures and Algorithms for Beginners
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 What is Big O?
- 3 O(1)
- 4 O(n)
- 5 O(n^2)
- 6 O(log n)
- 7 O(2^n)
- 8 Space Complexity
- 9 Understanding Arrays
- 10 Working with Arrays
- 11 Exercise: Building an Array
- 12 Solution: Creating the Array Class
- 13 Solution: insert()
- 14 Solution: remove()
- 15 Solution: indexOf()
- 16 Dynamic Arrays
- 17 Linked Lists Introduction
- 18 What are Linked Lists?
- 19 Working with Linked Lists
- 20 Exercise: Building a Linked List
- 21 Solution: addLast()
- 22 Solution: addFirst()
- 23 Solution: indexOf()
- 24 Solution: contains()
- 25 Solution: removeFirst()
- 26 Solution: removeLast()