Abstract Data Types (ADTs)
An Abstract Data Type (ADT) is a conceptual model for organizing and manipulating data. It defines the behavior and operations of a data structure without specifying how it is implemented. ADTs focus on what a structure does rather than how it works internally.
Common abstract data types are: list, stack, queue, deque, set, map.
Comments
Post a Comment