Home > other >  A pointer to the problem of linear table abstract data structure
A pointer to the problem of linear table abstract data structure

Time:10-06

Data structure is a beginner, add an asterisk to indicate action object pointer is mean, why create empty table action object pointer? Add & amp; ?
For example,
InitList (* L); A linear table is empty
ListEmpty (L); If the linear list is empty return true
GetElem (L, I, e); Will L of the ith element value is returned to the e
GetElem (L, I, & amp; E); And where is the difference?
For bosses to solve!

CodePudding user response:

E can be 0, and e is 0
  • Related