https://github.com/ikarbowiak/datastructuresandalgorithms
Data Structures & Algorithms Udacity Nanodegree Program projects
https://github.com/ikarbowiak/datastructuresandalgorithms
algorithms-and-data-structures python udacity udacity-nanodegree udacity-python
Last synced: 8 months ago
JSON representation
Data Structures & Algorithms Udacity Nanodegree Program projects
- Host: GitHub
- URL: https://github.com/ikarbowiak/datastructuresandalgorithms
- Owner: IKarbowiak
- Created: 2020-04-19T18:19:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-20T19:42:50.000Z (over 5 years ago)
- Last Synced: 2024-10-05T17:41:27.613Z (about 1 year ago)
- Topics: algorithms-and-data-structures, python, udacity, udacity-nanodegree, udacity-python
- Language: Jupyter Notebook
- Size: 158 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DataStructuresAndAlgorithms
Data Structures & Algorithms Udacity Nanodegree Program projects
## Project 1 - Unscramble computer science problem
Project contains solution for 5 short tasks and time complexity analysis of them.
## Project 2 - Show me the data structures
Project contains solutions for six questions which covers topics related to different data
structures like linked lists, trees. It also contains also time and space analysis
for all questions.
## Project 3 - Problems vs Algorithms
Project contains solutions for seven questions which covers topics related to the basic
algorithms, like binary search, merge sort. It also contains also time and space analysis
for all questions.
## Route planer
The aim of the route planner was to implement A* algorithm to calculate and find the
shortest path between two points on a map.