After the last chapter "What is the relationship between data structures and algorithms? I believe that you have more or less an understanding of data structures, and today we will enter the formal study of data structures.
In computer science, a data structure is a format for managing, organizing, and storing data. It is a collection of data elements that have one or more specific relationships with each other.
In the computer a static data is no soul, only the actual use of the meaning, and the use of a data will inevitably face three problems: how to store, with what to carry, how to deal with. And this is not exactly and storage, organization, management corresponds to it. This is precisely the three elements of data structure research concerns.
01、triptych
1. Physical (storage) structure
How to store refers to how the data is ultimately stored on the computer disk, which is what we often call the physical structure also called storage structure.
Just as we organize the housekeeping, some people may be neatly organized, in accordance with a certain order of organization, and some people organize this piece of that piece, the feeling that there is no rules. We can also be based on whether the data in memory for the continuous address storage is divided into sequential storage and non-sequential storage, common sequential storage sequential storage structure, non-sequential storage chained storage structure, indexed storage structure and hash storage structure.
2. Logical structure
With what carrier refers to the data from the computer disk out, where to put it or what tools to give it to subsequent applications to use it. And this carrier in our high-level language is a class, a data object, the roots of which we now say that the data structure, and at this time we are concerned about this class or this data object data is how to organize, is one-to-one, one-to-many, many-to-many or other relationships, and this relationship is purely between the data relationship between the data is irrelevant to the actual storage of data is the logic of a relationship, and therefore called the logical structure.
Similarly logical structures are also ordered and can be categorized into linear and non-linear structures. Linear structures include arrays, chained lists, stacks, queues, etc., and nonlinear structures include tree structures, graph structures, etc.
3. Data arithmetic
How to deal with refers to when the data has been taken out of the computer disk, how to process and use, that is, the data operation, we can according to the actual business needs of the data for a variety of processing, the most to get the results we want, this is the processing is often referred to as the addition, deletion, modification, checking, sorting and other operations.
If the physical (storage) structure is the home of the data structure, and the logical structure is the skeleton of the data structure, then the data operations are the soul of the data structure, making it possible for the data to truly generate value.
02、nomenclature
1. Data
Data is the carrier of information, which is the collection of all numbers, characters, conformity, etc. that can be entered into a computer and can be recognized and processed. This includes, but is not limited to, integers, decimals, letters, symbols, pictures, audio, video, and so on.
2. Data items
A data item is the smallest unit of data, for example, we define student number, name, age, etc. as data items when designing a student entity.
3. Data elements
Our practical use will often combine multiple data items together as a whole for unified processing, such a combination forms the basic unit of data data elements.
For example, each row of data in the student table is a data element.
4. Data objects
A data object is a collection of data with specific attributes and operations. A data object consists of multiple data elements, which are instances of the data object.
5. Abstract data types
An abstract data type is a definition that abstracts the characteristics and behavior of data and defines them, but has no concrete implementation.
For example, the stack as an abstract data type, defined such as "into the stack, out of the stack" and other operations, but the specific underlying implementation of the use of arrays or linked lists, the user does not care.
Later we will continue to: arrays, chained tables, jump tables, stacks, queues, trees, heaps, hashes, graphs, nine types of data structures for in-depth study, interested can continue to focus on.
classifier for sums of money: The test method code as well as the example source code have been uploaded to the codebase for those who are interested. /hugogoos/Planner