Program: Code a linked list with a node class. The node class should keep a key and pointer as private variables. Make the needed getters and setters.
You have to additionally create a function containing the main function that inserts a new node in a sorted linked list.
In the main function, create a link list using this function and class to add the values 0, 1, 4, 7, 10. After, print them from the linked list.
Will you create the link list using the given function and class?