Linkedlistpy 0.0.5 | Coderz Product

linkedlistpy 0.0.5

Last updated:

0 purchases

linkedlistpy 0.0.5 Image
linkedlistpy 0.0.5 Images

Free

Languages

Categories

Add to Cart

Description:

linkedlistpy 0.0.5

pylinkedlist - a Linked List library
This library provides linked lists so that you won't have to build your own! (especially for those evil interviews)

Installation
pip install linkedlistpy

Quick start
from linkedlistpy import LinkedList

linked_list = LinkedList()

linked_list.append(1)
linked_list.append_left([3, "foo", tuple, true])

print(linked_list)
>> [3, "foo", tuple, true, 1]

linked_list.reverse()

print(linked_list)
>> [1, true, tuple, "foo", 3]

Features included (for now)
Linked Lists

Singly Linked list
Doubly Linked list
Circular Linked list
Circular Doubly Linked list

Methods

built-in

str
list
len


append
append_left
insert
delete
reverse

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.