Simple implementation of data structures for python
Project description
pyfds
Simple implementaion of data structures (DS) for python
Content of the library
- linked list
- doubly linked list
- sorted linked list
- stack
- queue
- priority queue
- binary search tree
- utils // (package)
Content of utils
- node // single pointer node
- dnode // double pointer node
- tnode // tree pointer node
- pair
how to import utils
from pyfds.utils import *
pair = Pair()
or
import pyfds.utils
pair = utils.Pair()
Classes
- List // linked list
- DList // doubly linked list
- SList // sorted linked list
- Stack // stack
- Queue // queue
- PQueue // priority queue
- BST // binary search tree
API
List
Properties
- first // TODO: return the data in the first node
- last // TODO: return the data in the last node
Methodes
- insert(data, pos) // TODO: add node in the entered position (pos=0 => add in the begining) // the default value is set to 0
- append(data) // TODO: add node in the end
- delete(data) // TODO: delete all nodes hav the entered data
- remove(pos=0) // TODO: return and remove node in the entered position (pos=0 => remove first node, pos=-1 => remove last node)
DList
Properties
- first // TODO: return the data in the first node
- last // TODO: return the data in the last node
Methodes
- add_begin(data) // TODO: add a node to the begin
- add_fin(data) // TODO: add a node to the fin
- delete(data) // TODO: delete all nodes hav the entered data
- remove(pos) // TODO: return and remove node in the entered position (pos=0 => remove first node, pos=-1 => remove last node) // the default value is set to 0
SList
Properties
- first // TODO: return the data in the first node
- last // TODO: return the data in the last node
Methodes
- append(data) // TODO: add a node to the list in a sorted way
- delete(data) // TODO: delete all nodes hav the entered data
- remove(pos) // TODO: return and remove node in the entered position (pos=0 => remove first node, pos=-1 => remove last node) // the default value is set to 0
Stack
Properties
- top // TODO: return the data in the first node
Methodes
- push(data) // TODO: add a node to the top
- pop() // TODO: return and remove the node in the top
Queue
Properties
- front // TODO: return the data in the first node
- back // TODO: return the data in the last node
Methods
- enqueue(data) // TODO: add a node to the end
- dequeue() // TODO: return and remove the first element
PQueue
Properties
- front // TODO: return the data in the first node
- back // TODO: return the data in the last node
Methods
- enqueue(data) // TODO: add a node to the queue in a sorted way
- dequeue() // TODO: return and remove the first element
methods for all DSs
- str() // USE: print([DS_name]) // TODO: display the DS
- len() // USE: len([DS_name]) // TODO: return the lenth of the DS
- empty() // TODO: return True if the DS is empty
- clear() // TODO: clear the DS
- find(data) // TODO: return the number of how many the entered data found in the DS
- reverse() // TODO: return the reverse of the DS
- sort() // TODO: sort the DS if its not sorted
- exchange(n) // TODO: circular permutation for n time
- equals(DS) // TODO: return True if
DS
is equal to this DS
classmethods for all DSs
// USE: [DS] = [DS_type].method([DS1], [DS2])
// Examples:
stck3 = Stack.merge(stck1, stck2)
Stack.swap([DS1], [DS2])
the tow DS parameters must be from the same DS
- merge(DS1, DS2) // TODO: return the merge of two DSs in new DS
- swap(DS1, DS2) // TODO: swap between DS1 and DS2 (
DS1
will beDS2
andDS2
will beDS1
)
Note :
(reverse, sort, exchange) are not supported in this DS because they brake the rule of the Sorted Linked List
BST
properties
- number_of_nodes // TODO: return the number of nodes in the BST
- number_of_liefs // TODO: return the number of liefs (nodes without any children) in the BST
- height // TODO: return the height of the BST
- max // TODO: return the maximum value in the BST
- min // TODO: return the minimum value in the BST
methodes
- pre_order() // TODO: represent the BST in pre_order way
- in_order() // TODO: represent the BST in in_order way
- post_order() // TODO: represent the BST in post_order way
- append(data) // TODO: append a new node to the BST if not exist
- find(data) // TODO: search for an element in the BST and return it if exist
- parent(data) // TODO: return the parent node of an element if exist
- successor(data) // TODO: return the next value in the BST if exist
- predecessor(data) // TODO: return the previous value in the BST if exist
- delete(data) // TODO: delete an element from the BST if exist
- equals(bst) // TODO: return True if
bst
is equal to this BST (this BST is the same asbst
)
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
py-fds-3.5.2.tar.gz
(8.0 kB
view details)
Built Distribution
py_fds-3.5.2-py3-none-any.whl
(13.0 kB
view details)
File details
Details for the file py-fds-3.5.2.tar.gz
.
File metadata
- Download URL: py-fds-3.5.2.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 305e372d7079b4ad35a14f3975b6456a10491d3b2ea1dd61ee7518c7dad8942e |
|
MD5 | 0989e844758c5ee05013cebcf3643923 |
|
BLAKE2b-256 | 04950456e9329c0ad028ba9d5449d39ff48b8d31107cb8ae4341573cd6e2290d |
File details
Details for the file py_fds-3.5.2-py3-none-any.whl
.
File metadata
- Download URL: py_fds-3.5.2-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcccbb3da3784eeb2089db0bf42b4c69ff28c722760b8f3a65d6919d484fc117 |
|
MD5 | ec20f67b463556293341452236d958fd |
|
BLAKE2b-256 | 115b0b0e62dcb67b22513a2739d0f8c31ae354d16c5d8dbb54d8f9793c97aa1e |