Abstract Data Types
Abstract data types (ADTs) supply a simple collection of operations over a data thing. ADTs are a generalization of your primitive data type. They separate different concerns and tend to be used in recent approaches to data abstractions. Standard examples happen to be sets of integers, lists, maps, Queues and Trees. Each abstract type has […]