A library of Data Structures and Algorithms written in Python
Project description
ofnodes
ofnodes is a Python Package providing examples of the Author's ability to implement data structures and algorithms in Python. It is not a substitute for built-in or other third-party implementations of the same data structures and algorithms. It aims to illustrate the author's ability to produce a distributable package of objects behind a thoughtful user interface.
Features
Here is what ofnodes can do:
- implement a node object with a unidirectional pointer
- implement and manipulate a linked list object of unidirectional, i.e., 'singly linked' nodes.
Installation
pip install ofnodes
Usage
>>> llist = SinglyLinkedList()
>>> llist.head = "first node"
>>> llist.head = [42.0, True, "LGRW"]
>>> llist.tail = "third node added to list"
>>> llist
SinglyLinkedList(head=This node's data is 3 of type list., tail=This node's data is 24 of type str.)
>>> llist.tail = None
>>> llist
SinglyLinkedList(head=This node's data is 3 of type list., tail=This node's data is of type NoneType.)
>>> llist.head.next.data
'first node'
>>> llist.remove_tail()
>>> llist.tail.data
'third node added to list'
For more usage examples, please refer to the Documentation
Documentation
For detailed usage information , API reference, and code examples, please refer to the Documentation.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ofnodes-1.6.1.tar.gz.
File metadata
- Download URL: ofnodes-1.6.1.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.11.4 Linux/6.5.0-28-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84a36e40c37b618b66a18a7f8fdc46066f938e09d76c0bf050f74d53fcc99995
|
|
| MD5 |
2355d645c17195ee1c290409bfa5c193
|
|
| BLAKE2b-256 |
6c4a276d76255178578fa5b2100615d2861159bd2431dabe00f6e495f4174c9e
|
File details
Details for the file ofnodes-1.6.1-py3-none-any.whl.
File metadata
- Download URL: ofnodes-1.6.1-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.11.4 Linux/6.5.0-28-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
396bcfda1d8817e467e6d14ecdef998bc196582370f7f530215bb769e9aa7431
|
|
| MD5 |
e851d1b5194671e707e5f9a56106dcf3
|
|
| BLAKE2b-256 |
e8d31ad9a384515b37ad7a4faba781213e6345953f9eeabacbf031e6c5d6e9d8
|