Skip to main content

General purpose Abstract Data Types for Algorithmics

Project description

Algorithm Abstract Data Types

Finlay's package for Abstract Data Types written for Algorithmics class

Installation

Run the following command in your terminal: pip install AlgorithmADTs

AlgorithmADTs can now be imported into your python scripts!

I recommend from AlgorithmADTs import * to include all functionality, but you can also import from AlgorithmADTs.AbstractDataTypes or AlgorithmADTs.GraphAlgorithms

ADTS:

Array
    create: Integer -> Array
    set: Array x Integer x Element -> Array
    get: Array x Integer -> Element

List 
    create: None -> List
    is_empty: Array -> Boolean
    set: Array x Integer x Element -> List
    get: Array x Integer -> Element
    append: Array x Element -> List
Stack
    create: None -> Stack
    push: Stack x Element -> Stack
    pop: Stack -> Stack
    is_empty: Stack -> Boolean
    head: Stack -> Element
Queue
    create: None -> Queue
    enqueue: Queue x Element -> Queue
    dequeue: Queue -> Queue
    is_empty: Queue -> Boolean
    head: Queue -> Element
PriorityQueue
    create: None -> Priority Queue
    enqueue: Priority Queue x Element x Integer -> Priority Queue
    dequeue: Priority Queue -> Priority Queue
    is_empty: Priority Queue -> Boolean
    head: Priority Queue -> Element
Dictionary
    create: None -> Dictionary 
    get: Dictionary x Element -> Element
    set: Dictionary x Element x Element -> Dictionary 
    add: Dictionary x Element x Element -> Dictionary
    remove: Dictionary x Element -> Dictionary 
    has_key: Dictionary x Element -> Boolean
    is_empty: Dictionary -> Boolean
Graph
    create: None -> Graph
    add_node: Graph x Element -> Graph
    add_edge: Graph x Element x Element -> Graph
    adjacent: Graph x Element x Element -> Boolean
    neighbours: Graph x Element -> List
WeightedGraph (inherits from Graph)
    create: None -> Graph
    add_node: Graph x Element -> Graph
    add_edge: Graph x Element x Element -> Graph
    adjacent: Graph x Element x Element -> Boolean
    neighbours: Graph x Element -> List
    get_weight: Graph x Element x Element -> integer

Note that there is no restriction in these classes that elements be hashable, unlike some Python data types e.g. a Python dict requires keys to be hashable.

It also defines a variable infinity, set equal to float('inf')

The following magic methods are supported:

  • __getitem__ and __setitem__ for classes with a 'get' and 'set' function. This allows you to call instance[key] and instance[key] = value.
  • __iter__ for Array and List, which operates as expected. Dictionary iter returns an iterable of keys. This enables iterating through a class like for elem in instance
  • __str__ and __repr__ are defined for all classes except graphs and allow for classes to be easily viewed through printing Note that only the head element is visible for a stack or queue, so it is the only information that can be returned by these methods

Graph Algorithms

Currently, only the following graph algorithms are defined:

  • Prim's algorithm for computing the Minimal Spanning Tree of a weighted, undirected graph
  • Dijkstra's algorithm for finding the single source shortest path in a weighted graph
  • The Bellman-Ford algorithm which extends the functionality of Dijkstra's algorithm to allow for negative weights
  • The two variants of the Floyd-Warshall algorithm to calculate shortest path between all nodes and transitive closure of an unweighted graph
  • The PageRank algorithm for determining the relative importance of nodes in an unweighted graph

Version things

Still trying to figure out readme syntax To implement:

  • Optional hashing for graphs?
  • Search methods like DPS BFS

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

algorithmadts-0.1.1.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

algorithmadts-0.1.1-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file algorithmadts-0.1.1.tar.gz.

File metadata

  • Download URL: algorithmadts-0.1.1.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for algorithmadts-0.1.1.tar.gz
Algorithm Hash digest
SHA256 6e690f2b78d0a40c614d2d580806619df284fdb92724440b40001f4b88bd79f6
MD5 cbb24653dd29867dfc4b4201c2ef758d
BLAKE2b-256 6653bacc196df73be157e5ae2bb4aad7cf8b10f010e0b6200b6d1c4a878aa499

See more details on using hashes here.

File details

Details for the file algorithmadts-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: algorithmadts-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for algorithmadts-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7bbe5783bff7ded754346df1506ff2270681d78eccefcfbe4301374f2b1ab0d1
MD5 e53b9546f87c9aedbc7d27d373088704
BLAKE2b-256 3f2c19e260b2f9704e4746d4e778a78970ae835add2efdd9b08430fd172c1b66

See more details on using hashes here.

Supported by

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