About 18,100,000 results
Open links in new tab
  1. Collection (abstract data type) - Wikiwand

    In computer programming, a collection is an abstract data type that is a grouping of items that can be used in a polymorphic way.

  2. (Collection|Container) Data Type (Set, Bag, Sequence) - Datacadamia

    A collection is a abstract data type for grouping together multiple values. It's therefore sometime known as a container and creates a aggregation relationship A collection is: an object that groups multiple …

  3. 1.2. Abstract Data TypesData Structures and Algorithms

    1. 2.1. Abstract Data Types ¶ This module presents terminology and definitions related to techniques for managing the tremendous complexity of computer programs. It also presents working definitions for …

  4. Abstract Data Types - GeeksforGeeks

    Jan 31, 2026 · Abstract Data Type (ADT) is a conceptual model. They define what a data structure does without dictating how it does it. By separating the logical properties from the physical implementation, …

  5. Collection (abstract data type) - HandWiki

    May 1, 2025 · A collection is a concept applicable to abstract data types, and does not prescribe a specific implementation as a concrete data structure, though often there is a conventional choice …

  6. Associative array - Wikipedia

    Associative array In computer science, an associative array, key-value store, map, symbol table, or dictionary is an abstract data type that stores a collection of key/value pairs, such that each possible …

  7. Is array a Data Type or Data Structure? - GeeksforGeeks

    Jul 26, 2025 · What is Data Type? In computer programming, a data type is a classification of data that determines the type of values that can be stored, manipulated, and processed. It tells the computer …

  8. Abstract Data Types | Algorithms and Data Structures | University of ...

    An abstract data type or ADT (sometimes called an abstract data type) is a mathematical model of a data structure. It describes a container which holds a finite number of objects where the objects may …

  9. 1.2. Abstract Data Types — CSci 2101 Data Structures

    Jun 11, 2025 · An abstract data type (ADT) is the specification of a data type within some language, independent of an implementation. The interface for the ADT is defined in terms of a type and a set …

  10. Stack (abstract data type) - Wikiwand

    In computer science, a stack is an abstract data type that serves as a collection of elements with two main operations:Push, which adds an element to the collec...