Lecture 05 - Linked Lists
Lecture 05 - Linked Lists
Linked Lists
By Ritwik M
Based on the reference materials by Prof. Michael T Goodrich, OCW METU and Dr. Vidhya Balasubramanian
All external images from Goodrich, Michael T., Roberto Tamassia, and Michael H. Goldwasser. Data structures and algorithms in Python. John Wiley & Sons, 2013.
• Deletion
Search through the list to find the element ( marked as current)
previous.setNext(current.getNext())
• Linked List
• Types
• Singly
• Doubly
• Circular
• Linked List ADT
• C++ & Python implementation
• List based Implementation of Stacks
• List based Implementation of Queues
• Examples
• Exercises
25 Amrita Vishwa Vidhyapeetham Ritwik M
Amrita School of Engineering
Up Next
Ritwik M