go to previous page   go to home page   go to next page hear noise

Answer:

The address of the successor node.


Linked List Nodes

Two Node List

The previous chapter implemented linked lists using static memory and symbolic addresses. For example, here is some code and a picture of what it does:

          .data
elmnt01:  .word  1
          .word  elmnt02

elmnt02:  .word  2
          .word  0

Each node contains an integer followed by an address.


QUESTION 3:

How many bytes are needed for each node?