linked list
举一反三
- linked list
- Which one of the following is not a characteristic of the linked list? A: The node in a linked list can be accessed randomly B: Inserting or deleting a node in a linked list do not need to move the other nodes C: Don't have to estimate storage space in advance D: The memory space required by a linked list is in proportion to the length of the list.
- Compared with array based list, linked list requires more memory to store elements.
- The linked list is a linear structure adopting the storage of . A: sequential structure B: linked structure C: star structure D: net structure
- Which operations of linked list are more efficient than array based list? A: insert B: search C: remove D: setPos