Skip to content

daniel-yj-yang/Linked_List_lib

Repository files navigation

BuildTest_ PyPi_ License_ Downloads_ _

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)

About

Library for Studying and Applying Linked List Data Structure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages