[Data structure] Preface

1. What is a data structure?

Data structure is a way for computers to store and organize data. It refers to a collection of data elements that have one or more specific relationships with each other.
Simply put, it is the structure of the organization and storage management data.

2. What is an algorithm?

Algorithm (Algorithm): It is a well-defined calculation process. It takes one or a set of values ​​as input and produces one or a set of values ​​as output.
Simply put, it is a series of calculation steps used to convert input data into output results.

3. The relationship between data structure and algorithm

Interdependence and interdependence.

Guess you like

Origin blog.csdn.net/m0_46630468/article/details/113484029