Contents: CS2

From

(Difference between revisions)
Jump to: navigation, search
(Data Structures, Algorithms, and Complexity)
Line 17: Line 17:
* [[memoryallocation|Memory Allocation]]
* [[memoryallocation|Memory Allocation]]
* [[complexity|Asymtotic Measures]]
* [[complexity|Asymtotic Measures]]
-
* [[primitivestructures|Primitive Structures]
+
* [[primitivestructures|Primitive Structures]]

Revision as of 13:13, 24 March 2009

Introduction (needs to be written)

Data Structures

A data structure is a means of organizing data in a computer’s memory to try to optimize either the memory needed or the time to access the data. This brings up the classic trade-off in Computer Science: the trade-off between Time and Space. In most situations today, it seems that we are primarily interested in minimizing the Time aspect. But, given smaller and smaller devices that increasingly do more (think of the evolution of the cell phone), minimizing the Space aspect can be important also.

There is sometimes a difference made between a data structure and an abstract data type (ADT). An ADT describes the public interface of a data structure: the type of data and the valid operations on the data. An ADT, however, does not consider an implementation, and this is the essential difference.

Data Structures, Algorithms, and Complexity

Personal tools
MediaWiki Appliance - Powered by TurnKey Linux