Linked Lists Flashcards
Do all programming languages provide the list data structure
No, not all. Python does.
What is the name of the containers that store the element in a linked list
Node
What does RAM stand for
Random Access Memory
what does the element stand for in this context
the item that is stored in the linked list node
Within the SLinkedListNode class, what do the parameters InitData and InitNext stand for?
InitData: element that will be stored within the node
InitNext: the next node that will be linked to the one created
What are the instances variables present in a SLinkedList
self. head
self. size
What does the Node class create? What is the language used to communicate with it?
The node with its item/data and the link to the next
You can communicate with Node by using getNext,get data, ……