Implementing a linked list
In the video, you learned how to create singly linked lists by implementing the Node() class and the LinkedList() class.
In this exercise, you will practice implementing both of these classes. In the first step, we will implement the Node() class, and in the second step the LinkedList() class. Are you ready?
Deze oefening maakt deel uit van de cursus
Data Structures and Algorithms in Python
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
class Node:
def __init__(self, data):
# Store the value for the node
self.value = ____