MindMap Gallery data structure
The core computer professional course - Data Structure, shares the knowledge architecture of linear tables, trees, and graphs. Friends in this major and those who are interested should not miss it. You can download it for review.
Edited at 2023-07-04 15:50:28One Hundred Years of Solitude is the masterpiece of Gabriel Garcia Marquez. Reading this book begins with making sense of the characters' relationships, which are centered on the Buendía family and tells the story of the family's prosperity and decline, internal relationships and political struggles, self-mixing and rebirth over the course of a hundred years.
One Hundred Years of Solitude is the masterpiece of Gabriel Garcia Marquez. Reading this book begins with making sense of the characters' relationships, which are centered on the Buendía family and tells the story of the family's prosperity and decline, internal relationships and political struggles, self-mixing and rebirth over the course of a hundred years.
Project management is the process of applying specialized knowledge, skills, tools, and methods to project activities so that the project can achieve or exceed the set needs and expectations within the constraints of limited resources. This diagram provides a comprehensive overview of the 8 components of the project management process and can be used as a generic template for direct application.
One Hundred Years of Solitude is the masterpiece of Gabriel Garcia Marquez. Reading this book begins with making sense of the characters' relationships, which are centered on the Buendía family and tells the story of the family's prosperity and decline, internal relationships and political struggles, self-mixing and rebirth over the course of a hundred years.
One Hundred Years of Solitude is the masterpiece of Gabriel Garcia Marquez. Reading this book begins with making sense of the characters' relationships, which are centered on the Buendía family and tells the story of the family's prosperity and decline, internal relationships and political struggles, self-mixing and rebirth over the course of a hundred years.
Project management is the process of applying specialized knowledge, skills, tools, and methods to project activities so that the project can achieve or exceed the set needs and expectations within the constraints of limited resources. This diagram provides a comprehensive overview of the 8 components of the project management process and can be used as a generic template for direct application.
data structure
linear table
array
linked list
Single list
Create singly linked list
insert node
Head insertion method
tail-checking method
delete node
Reverse singly linked list
Reverse in place
Non-local inversion
Multiple linked lists
Doubly linked list
cross linked list
linear table
definition
storage
sequential storage
initialization
Find
insert
delete
chain storage
Establish
Ask for table length
Find
Search by serial number
Find by value
insert
delete
generalized table
stack
definition
Basic operations
Create stack
pop
push to stack
Basic application
expression
prefix
infix
suffix
queue
definition
Basic operations
Create queue
Dequeue
Join the team
Basic application
Multiple prior addition operations
maze problem
Tree
basic theoretical knowledge
definition
root node
degree of node
degree of tree
leaf node
parent node
child node
Brother node
ancestor node
Descendants node
Node level
branch
Path and path length
Binary tree
definition
nature
storage structure
sequential storage
chain storage
Basic operations
Traverse
preorder traversal
recursion
non-recursive
inorder traversal
recursion
non-recursive
Postorder traversal
recursion
non-recursive
level-order traversal
recursion
non-recursive
create
binary search tree
definition
dynamic search
Recursive search
Iterative search
Check the maximum value
Check the minimum value
insert
delete
balanced binary tree
definition
Adjustment
Single turn adjustment
Double rotation adjustment
Applications of trees
heap
definition
max heap
min heap
create
insert
delete
Huffman tree
definition
structure
coding
gather
express
Operation
and operation
Merge by rank
path compression
Find
picture
concept
definition
Classification of graphs
simple diagram
directed graph
Undirected graph
complete graph
undirected complete graph
to the complete picture
degree of vertex
subtopic
dense graph
sparse graph
adjacent point
path
right
subplot
connected graph
Strongly connected graph
spanning tree
generate forest
storage structure
lead matrix
adjacency list
Graph traversal
depth first
breadth first
minimum spanning tree
concept
structure
prim algorithm (added point method)
Kruskal's algorithm (additional edge method)
shortest path
single source shortest path
definition
Dijkstra's algorithm
The shortest path between any two points
Floyd algorithm