We Continue Our Data Structure Journey!

So far we have seen:

Lets try a list of students by grade

Operations

See Demo sentinelDLLstream.h

Some things to note are:

See Demo sentinelDLLstream.cpp

Some things to note are:

See Demo Scores.cpp

Abstract Data Types

Abstarct data types are data structures that are defined by their instructions. The users of the ADT's need not and should not know how they are implemented, though it is ok to have a "mental model" of how they work. For instance:


	Stack
	Operations:
	  push
	  pop
	  isEmpty
	  print
And as a user, this is all we need to know. We do not need to show concern about how these operations are implemented. An example of a stack would be:
Make sure that you look into the demos:

To Index Previous