About 477,000 results
Open links in new tab
  1. What are ADTs? (Abstract Data Types) - Stack Overflow

    The Abstact data type Wikipedia article has a lot to say. In computer science, an abstract data type (ADT) is a mathematical model for a certain class of data structures that have similar behavior; or for …

  2. computer science - How to understand ADT (abstract data type algebra ...

    Nov 22, 2013 · But well, leaving Djikstra's known hyper-critic humor aside, I can think of at least one real application of ADT's: assertions. Assertions allow you to specify how your type works in a formal, …

  3. What is an abstract data type in object oriented programming?

    Nov 7, 2009 · The abstract data type (ADT) itself refers to this model, not any particular implementation in any particular programming language or paradigm. You could implement a Stack in an object …

  4. What is the difference between an Abstract Data Type (ADT) and a …

    Nov 11, 2015 · 36 This may help: To put it simple, ADT is a logical description and data structure is concrete. ADT is the logical picture of the data and the operations to manipulate the component …

  5. Difference between adt and data structures - Stack Overflow

    Jan 3, 2018 · Stack is an example of an abstract data type, stack is an example of a data structure but yet abstract data types are different from data structures how come?

  6. java - Abstract Data Type and Interface - Stack Overflow

    Oct 8, 2013 · In computer science, an abstract data type (ADT) is a mathematical model for a certain class of data structures that have similar behavior; or for certain data types of one or more …

  7. data structures - Stack and Queue, Why? - Stack Overflow

    Jan 15, 2010 · Why and when should I use stack or queue data structures instead of arrays/lists? Can you please show an example for a state thats it'll be better if you'll use stack or queue?

  8. computer science - I'm trying to implement fractions as an ADT in Java ...

    May 7, 2025 · I made 3 different packages with classes in them. One package is for simple fractions and another is for arrays of fractions. The smaller one is for implementing math functions mcm and MCD. …

  9. why stack is called abstract data type.If stack is adt , then how to ...

    Dec 28, 2012 · In computer science, a data structure is a particular way of storing and organizing data in a computer so that it can be used efficiently One way of describing the stack is as a last in, first out …

  10. Difference between Symbol table and Hash map data structures

    Apr 23, 2017 · Symbol table is an abstract data type (ADT). So it can't be compared with hash map which is a data structure. But they are very closely related. Detailed Explanation: First of all, Symbol …