Question: class Node: def __init__(self, value): self.value = value self.next = None def __str__(self): return Node({}).format(self.value) __repr__ = __str__ class OrderedLinkedList: ''' Creates a linked list
In class, we have been working on the implementation of a singly linked list. That data structure keeps the elements of the linked list unsorted. Based on the LinkedList code, implement the data structure OrderedLinkedList with the following characteristics: Ordered inkedListO creates a new ordered list that is empty. It needs no parameters and returns nothing. You can assume the items in the list are unique .add(item) adds a new Node with value-item to the list making sure that the ascending order is preserved. It needs the item and returns nothing. pop) removes and returns the last Node in the list. It needs nothing and returns the value . of the Node isEmpt0 tests to see whether the list is empty. It needs no parameters and returns a boolean len(list object) returns the number of items in the list. It needs no parameters and returns an integer NOTE: To grade this assignment, the grading script will perform a series of mixed linked list operations and compare the final status of your list. Verify that all your methods work correctly when mixed together. EXAMPLE >>> x-OrderedLinkedList >>x.isEmpty) True >>>x.pop List is empty >> x.add (7) x x.add(-6) >>> x.add (58) >x.add 133) >>x.add (3) print(x) Head:Node (-88) Labe (2) LADT LADS Dy MacBook Air 5 6 7 8
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
