AbstractDataType.md (336B)
1 # Abstract Data Type (ADT) 2 3 CS 202 L14 4 5 **Definition:** An ADT is a datatype that specifies it's interfaces but not implementation. This is similar to the relationship between an [ISA](ISA.md) and [MicroArchitecture](MicroArchitecture.md) 6 7 These are a focus of CS 303 and include things such as [Stack](Stack.md) and [Queue](Queue.md).