[Dachang Algorithm Series] Coding handwritten sequence table related functions, detailed analysis of core knowledge points of linear structure

insert image description here

What is a linear table

  • In the second chapter we mentioned that the two elements have **"one-to-one"** logical relationship data, and the storage method is a linear table

  • A linear table is also called a linear storage structure, which is basically the most commonly used data structure. A sequence of n data elements with the same property

  • In this way, storing data as a linear table is to put all the data through a thread and put them in the physical space. As follows, this kind of storage structure, the data is stored in the physical space in sequence, is called a sequential table , and the structure of data scattered storage is also called a linked list

  • Linear table related terms

Guess you like

Origin blog.csdn.net/weixin_45574790/article/details/129232326