Contents: CS2
From
(→Data Structures, Algorithms, and Complexity) |
|||
Line 16: | Line 16: | ||
== Data Structures, Algorithms, and Complexity == | == Data Structures, Algorithms, and Complexity == | ||
- | *[[ | + | *[[Memory Allocation|Memory Allocation]] |
- | *[[ | + | *[[Asymptotic Measures|Asymptotic Measures]] |
*Algorithms | *Algorithms | ||
- | # | + | #[[Searching|Seaching]] |
- | + | #[[Sorting|Sorting]] | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
+ | *[[Primitive Structures|Primitive Structures]] | ||
+ | *[[Concept of an Element (Node)|Concept of an Element (Node)]] | ||
+ | *[[Abstract Data Types|Abstract Data Types]] | ||
*Linear Structures | *Linear Structures | ||
- | #Lists | + | #[[Lists|Lists]] |
- | #Stacks | + | #[[Stacks|Stacks]] |
- | #Queues | + | #[[Queues|Queues]] |
*Trees | *Trees | ||
- | #Binary Trees | + | #[[Binary Trees|Binary Trees]] |
- | #Binary Search Trees | + | #Binary Search Trees |
- | #AVL Trees | + | #AVL Trees |
- | #Red-Black Trees | + | #Red-Black Trees |
- | #Splay Trees | + | #Splay Trees |
- | #Heaps | + | #Heaps |
#B-Trees | #B-Trees | ||
- | *Graphs | + | *Graphs |
+ | *UnOrdered Collections | ||
+ | |||
+ | #Sets | ||
+ | #Maps and Dictionaries | ||
+ | #Hash Tables | ||
<br> | <br> |
Revision as of 14:31, 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
- Memory Allocation
- Asymptotic Measures
- Algorithms
- Primitive Structures
- Concept of an Element (Node)
- Abstract Data Types
- Linear Structures
- Trees
- Binary Trees
- Binary Search Trees
- AVL Trees
- Red-Black Trees
- Splay Trees
- Heaps
- B-Trees
- Graphs
- UnOrdered Collections
- Sets
- Maps and Dictionaries
- Hash Tables