March 2019
Intermediate to advanced
336 pages
9h 9m
English
The unordered list consists of elements that are not ordered by numbers. An UnOrderedList class has a headNode pointer as the property. Traversing to the next node from the head node, you can iterate through the linked list:
// UnOrderedList classtype UnOrderedList struct { headNode *Node}
The next section discusses the AddtoHead method and the IterateList method of the UnOrderedList struct.
Read now
Unlock full access