Skip to main content

Posts

Showing posts with the label stack implementation using python lists

Course Review: learn python data structures: list, queue and others

 Introduction: On a very bright friday, I don't have any specific hard task in my hands and therefore decided to explore a linkedin learning course. I would like to thank my current employer at the time of writing this blog; IQuanti for availing us the free linkedin learning.  In this post, we are going to review and provide key points from the course about learning python data structures. It is designed and created by Erin allard. Now, let's dive in. First concept: Abstract data types: What is abstract data types? "abstract data types are abstract theoretical computer science concept which defines what type of data a data structure can hold and how can we interact with that data." In case of creating new abstract data types, we have to therefore define both the data and ways to interact with it. But in the course, we are going to explore stack, queues and other well established structures; for which the formats are already well known.  It is also important to un...