Home > Back-end >  C language build order index linked storage structure index table
C language build order index linked storage structure index table

Time:04-08

1, build order - index - linked storage structure of the index table, the key word is 0 ~ 9, a pointer is empty;
2, 100-0-99 integer random Numbers, bits values as the key, the number to the corresponding child table;
3, according to the keywords (0 ~ 9) all the elements in the output corresponding to the child table;
X 4, enter a data, delete all the data in a storage structure, and then do step 3,

CodePudding user response:

Struct param {
Type data.
Struct param * next;
};

Struct param array [10].
  • Related