项目作者: BazNick

项目描述 :
Circular Linked List implementation in Python 3
高级语言: Python
项目地址: git://github.com/BazNick/Circular_Linked_List.git
创建时间: 2020-10-05T15:13:33Z
项目社区:https://github.com/BazNick/Circular_Linked_List

开源协议:

下载


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;