项目作者: BazNick
项目描述 :
Circular Linked List implementation in Python 3
高级语言: Python
项目地址: git://github.com/BazNick/Circular_Linked_List.git
Circular_Linked_List class
Circular Linked List implementation in Python 3
In this implementation I have following methods:
- Checking size of a Circular Linked List;
- Checking if List is empty;
- Creating/Adding elements in the List;
- Displaying full List;
- Searching elements;
- Adding to the beginning of a List;
- Adding in random position;
- Removing/Deleting the element;