Singly Linked Lists Tutorial - What is a Linked List?

preview_player
Показать описание
What is a linked list? This singly linked list tutorial will cover all of the important features of linked lists like: time complexity, implementation with pseudo code, pros, cons and more. After this data structure tutorial you should have a solid idea of how singly linked lists work and feel comfortable using and implementing them in your own code.

◾◾◾◾◾
💻 Enroll in The Fundamentals of Programming w/ Python

◾◾◾◾◾◾

⚡ Please leave a LIKE and SUBSCRIBE for more content! ⚡

Tags:
- Tech With Tim
- Singly Linked List
- Single Linked List Tutorial
- Linked Lists
- Data Structures Tutorial
- Singly Linked List Data Structure

#LinkedList #DataStructures #ComputerScience
Рекомендации по теме
Комментарии
Автор

After watching your tutorials, no other tutorial comes any close to yours. You're amazing!

emalda
Автор

6:28 - find a value in the SLL method,
9:50 - add something to the beginning of the list,
11:10 - find and remove a node


sheesh u explained it better than our data structure instructor 😂
great job! continue 👍💕

maryamkameshki
Автор

Thanks so much for explaining Singly Linked List very simply. Watched a lot of vids about Linked Lists and still couldn't understand it 100% but I can finally understand it now!!

niquebon
Автор

thanks this is really helping me to understand the traverse

namescoby
Автор

thanks man that was very helpful, good explanation

proddima
Автор

which software are you using for presentation ?

shrinathjoshi
Автор

why current = self.head. Why not operate on self.head? I have an idea why, but i'm a bit miffed at tutorials just not explaining why they do something.

scullyy
Автор

12:30 - but -3 is still in the memory. Memory leak!

Sergey_Latyshev
Автор

Why is adding to the end of the list faster than an array?

longhotsummergames