Skip to main content

Library for Studying and Applying Linked List Data Structure

Project description

BuildTest PyPi License Downloads PythonVersion

Library for Studying and Applying Linked List Data Structure

Installation

pip install Linked_List_lib

Sample Usage

from Linked_List_lib import sll_node # singly linked list node

curr = head = sll_node(1)
curr.next = sll_node(2)
curr = curr.next
curr.next = sll_node(3)
curr = curr.next
curr.next = sll_node(4)
curr = curr.next
curr.next = sll_node(5)

print(head)
print(head.middle)
head = head.reversed
print(head)
head = head.reversed
print(head)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Linked_List_lib-0.0.3.tar.gz (6.1 kB view hashes)

Uploaded Source

Built Distribution

Linked_List_lib-0.0.3-py3-none-any.whl (6.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page