bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/DSA

DSA

Linked Lists

Linked Lists focused on DSA Linked Lists and related concepts.

Lesson 1

DSA Linked Lists

A Linked List is, as the word implies, a list where the nodes are linked together. Each node contains data and a pointer. The way they are linked together is that each node points to where in the mem…

Read lesson →Loading…
Lesson 2

DSA Linked Lists in Memory

To explain what linked lists are, and how linked lists are different from arrays, we need to understand some basics about how computer memory works.

Read lesson →Loading…
Lesson 3

DSA Linked Lists Types

There are three basic forms of linked lists:

Read lesson →Loading…
Lesson 4

DSA Linked Lists Operations

Basic things we can do with linked lists are:

Read lesson →Loading…