T
Tinker
If we used an array of many structures such as:
struct instruction array[1000];
and this array holds 500 instructions from array[0] to array[499], how
can a new instruction be inserted between the 2nd and 3rd
instructions? Why is a linked list preferable in this situation?
Pleas advise Thx
Tinker
struct instruction array[1000];
and this array holds 500 instructions from array[0] to array[499], how
can a new instruction be inserted between the 2nd and 3rd
instructions? Why is a linked list preferable in this situation?
Pleas advise Thx
Tinker