Application of Data Structures Flashcards
Structure of Data:
refers to the relationships among data elements
Logical structure
Structure of Data:
pertains to how data is stored in computer memory
Physical Structure
is described as a set of data elements with certain logical relationships, stored in computer memory with corresponding operations encapsulated
data structure
Basic Principles in data structure design
Problem Analysis
Preliminary Design
Attention to Extensibility
Consideration of time and space cost of algorithm
these structures include linear tables, stacks, and queues
Linear structures
these structures encompass trees, sets, and graphs
Nonlinear structures
A one-to-one relationship exists in the data elements of this structure
Linear structure
is described as a finite sequence of instructions, representing specific and limited operation steps taken to solve a particular problem.
algorithm
common storage
structures of different types of data structures
- sequential storage structure
- chain storage structure
- hash storage structure
- index storage structure
two traversal modes in graph
depth-first traversal
breadth-first traversal
Data elements stored one after another in contiguous memory
Sequential Storage Structure
Data elements linked via pointers, allowing dynamic allocation
Chain Storage Structure
Data elements stored based on hashed keys in a hash table
Hash Storage Structure
Maintains an index mapping keys to data element positions
Index Storage Structure
Traversal Modes:
It involves exploring a graph or tree by first visiting the starting node and then recursively visiting its adjacent nodes (children or neighbors) in depth, prioritizing exploration of deeper nodes before backtracking
Depth-First Traversal
Traversal Modes:
In this method, exploration begins at the starting node, and all adjacent nodes at the current level are visited before moving to the next level. It involves systematically visiting all nodes at the same level before progressing to deeper levels, ensuring a broad exploration of the graph or tree.
Breadth-First Traversal
two algorithms for generating minimum spanning trees in graphs
Prim’s Algorithm
Kruskal’s Algorithm
Algorithms:
based on selecting the smallest edge to form a collection
Prim’s Algorithm
Algorithms:
based on selecting the smallest edge until a unified connected component is obtained
Kruskal’s Algorithm
involves removing nodes with zero in-degree and their adjacent edges until either the process ends or only one loop remains. It is used to solve problems related to partial order and total order in directed acyclic graphs
Topological Sorting
two ways of expressing graphs
- adjacency matrix
- adjacency list
implies that all elements can be compared
Total order
indicates that only some elements can be compared
Partial order
explores all neighboring nodes at the current depth level before moving to the next depth level, similar to hierarchical traversal of a tree using queues
Breadth-first traversal
explores as far as possible along each branch before backtracking, resembling preorder traversal of a tree
Depth-first traversal