Library for Studying and Applying Linked List Data Structure
Project description
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
Release history Release notifications | RSS feed
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 details)
Built Distribution
File details
Details for the file Linked_List_lib-0.0.3.tar.gz
.
File metadata
- Download URL: Linked_List_lib-0.0.3.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.26.0 setuptools/59.4.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fefec19623fb1f5cb358dccc7517722ffa4c879b6014fc08b27d626cd1758ef7 |
|
MD5 | 418f49a3bfd70c0caa624a0f1701c80b |
|
BLAKE2b-256 | e7b6290e5e8c303401872e22170159a9c4826c251c9f397a691b6adf41fa9135 |
File details
Details for the file Linked_List_lib-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: Linked_List_lib-0.0.3-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.26.0 setuptools/59.4.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 602ea0d43db12c2895c12337f456ef07ff6cc6180f4e301b26ba3d0d872fcbbd |
|
MD5 | ed9fd0dbe8ac9ddd8eac66f0a56cc466 |
|
BLAKE2b-256 | 66350a06dafad499859e6e849164bedff3b9a0febbb0e410ce306a11e8d98aa5 |