Skip to content

Files

Latest commit

author
Nick
Oct 8, 2020
fed5429 · Oct 8, 2020

History

History
13 lines (12 loc) · 409 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 409 Bytes

Doubly-Linked-List

Doubly Linked List impelementation in Python 3 In this implementation I have following methods:

  • Checking size of a Doubly Linked List;
  • Checking if List is empty;
  • Creating/Adding elements in the List;
  • Displaying full List;
  • Displaying List in reverse order;
  • Searching elements;
  • Adding to the beginning of a List;
  • Adding in random position;
  • Removing/Deleting the element;