What is a Linked List, really?

preview_player
Показать описание
Unravel the secrets of Linked Lists with our in-depth analysis of Singly Linked Lists and Doubly Linked Lists at the memory level. 🔍 Understand the strengths, weaknesses, and mechanics of these fundamental data structures in computer science. 🧠 Our detailed explanations and animations will make complex concepts easy to understand.

Don't forget to like, subscribe, and hit the 🔔 to stay up-to-date with our latest content!

📚 Chapters:
00:00 - Introduction
00:58 - Basics of Memory
02:25 - Adding Data to a Singly Linked List
04:59 - Removing Data from a Singly Linked List
06:10 - Retrieving Data from a Singly Linked List
07:30 - Strengths of a Singly Linked List
08:34 - Chapter 2: Doubly Linked List
08:51 - Strengths and Weaknesses of Doubly Linked List
12:43 - Closing Remarks

#LinkedList #SinglyLinkedList #DoublyLinkedList #DataStructures #ComputerScience #MemoryManagement #LinkedListsInMemory #LinkedListOperations #LinkedListEfficiency #LinkedListExamples #LinkedListWeaknesses #LinkedListStrengths
Рекомендации по теме
Комментарии
Автор

Brilliant video as usual. Just to bring it down from the theory world to the practical world, what is the equivalence of a linked list in a programming language (if any). Can we say that a vector is a form of a linked list?

Darkev
Автор

Thank you very very much . I'm student in Germany. And I really need that for next month in the UNI. I'm in your course in Udemy

mansouremami
Автор

Oh the joys of studying linked lists (and subsequent tree structures) in my classes at college. Thank you for your clear, easy-to-understand coverage. I look forward to more in the series.

One thing in your explanation I think is kind of glossed over (or maybe I just missed it) with the doubly-linked list is an implied order to "know" whether to start searching from the tail or the head. If the data is stored randomly, on average it wouldn't matter where you started. Maintaining an ordered list (whether singly- or doubly-linked) is rather easy, since insertions can be arbitrary. The only real complexity is determining where to put it.

Now that I've totally scared people off, I think my job is done!

jackcurl