https://github.com/pawelzeja098/algoritms-and-data-structures
Basic algorithms and data structures implemented in Python.
https://github.com/pawelzeja098/algoritms-and-data-structures
algorithms data-structures python
Last synced: 10 months ago
JSON representation
Basic algorithms and data structures implemented in Python.
- Host: GitHub
- URL: https://github.com/pawelzeja098/algoritms-and-data-structures
- Owner: pawelzeja098
- Created: 2024-03-02T18:55:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-02T10:34:29.000Z (almost 2 years ago)
- Last Synced: 2025-03-27T07:48:22.718Z (about 1 year ago)
- Topics: algorithms, data-structures, python
- Language: Python
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algoritms and data structures
## Description
Solutions for Algorithms and Data Structures course on AGH in Automatic control and robotics field
- Matrix class
- Chio`s method
- Linked list
- Doubly linked list
- Cirrcular array
- Unrolled linked list (TO FIX: interation must not include None)
- Hash table (TO FIX: search and remove computational complexity from O(n) to O(1))
- Binary tree BST
- Heap priority queue
- Heap sort
- Selection sort
- Btree - not finished
- Prim's algorithm
- Ford-Fulkerson's method
- Ullmann`s algorithm
- Naive and Rabin Karp method
- Convex hull