This repository contains solutions to exercises from Data Structures and Algorithms course at AGH university.
- prepared set of test graphs that can be easily imported or copy pasted -> graphs.py
- tool for rendering visual representations of graphs -> renderGraph.py
└── algorithms_and_data_structures.git/
├── README.md
├── data_structures
├── exams
│ ├── 2020-21
│ ├── 2021-22
│ ├── 2022-23
│ ├── 2023-24
│ └── mock
├── exercises
│ ├── lab1
│ ├── lab10
│ ├── lab2
│ ├── lab3
│ ├── lab4
│ ├── lab5
│ ├── lab6
│ ├── lab7
│ ├── lab8
│ ├── lab9
│ └── usefullFunctions.py
├── graph_algorithms
│ ├── MST
│ ├── basic
│ ├── flows
│ ├── graphs
│ └── path_finding
├── offline
│ ├── offline1
│ ├── offline2
│ ├── offline3
│ ├── offline4
│ ├── offline5
│ ├── offline6
│ ├── offline7
│ ├── offline8
│ └── offline9
├── old_offlines
│ └── 2021-22
├── progress_tests
│ ├── 2016-17
│ ├── 2019-20
│ ├── 2020-21
│ ├── 2021-22
│ ├── 2022-23
│ └── 2023-24
├── sorting
└── typical_algorithmsThis project requires the following dependencies:
- Programming Language: Python
Build algorithms_and_data_structures.git from the source and intsall dependencies:
-
Clone the repository:
❯ git clone https://github.com/WSm-77/algorithms_and_data_structures.git
-
Navigate to the project directory:
❯ cd algorithms_and_data_structures
To run any algorithm simply navigate to directory containing algorithm_to_run.py file and run it with:
python3 algorithm_to_run.py- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
algorithms_and_data_structuresproject. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/WSm-77/algorithms_and_data_structures.git
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!