Data Models in Python Using LinkedList example
This experiment, tries to implement few DataModels for LinkList object in Python such as iter(Makes linkedList Object iterable), eq(Compares Two LinkedLists on == operator), add(Adds Elements of two LinkedLists), str(Prints the elements of LinkList on printing the object), repr(Display the representation of LinkedList object on repr method) etc.
For Implementation details, please visit the git Link:
https://github.com/Indu-sharma/Utilities/tree/master/Python_generic/PythonDataModels
Comments