Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paradocx96/it2070-dsa-python
This repository contains the Data Structures and Algorithms related projects & materials of IT2070 - Data Structures and Algorithms Module in 2nd Year 2nd Semester.
https://github.com/paradocx96/it2070-dsa-python
algorithms data-structures-and-algorithms dsa python
Last synced: 5 days ago
JSON representation
This repository contains the Data Structures and Algorithms related projects & materials of IT2070 - Data Structures and Algorithms Module in 2nd Year 2nd Semester.
- Host: GitHub
- URL: https://github.com/paradocx96/it2070-dsa-python
- Owner: paradocx96
- Created: 2020-10-02T18:15:25.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-16T22:03:34.000Z (almost 3 years ago)
- Last Synced: 2024-10-31T02:05:11.797Z (about 2 months ago)
- Topics: algorithms, data-structures-and-algorithms, dsa, python
- Language: Python
- Homepage:
- Size: 2.01 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IT2070 - Data Structures and Algorithms
## Algorithms
* Recursion - [Factorial](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/Recursion_Factorial.py), [Fibonacci](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/Recursion_Fibonacci.py), [Power](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/Recursion_Power.py), [Summation](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/Recursion_Summation.py)
* Insertion Sort - [Example 01](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/InsertionSort.py), [Example 02](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/InsertionSortDec.py), [Example 03](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/InsertionSortNew.py)
* Quick Sort - [Example 01](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/QuickSort.py), [Example 02](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/QuickSortDec.py)
* Merge Sort - [Example 01](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/MergeSort.py), [Example 02](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/MergeSort_New.py), [Example 03](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/MergeSort_gfg.py)
* Bubble Sort - [Example 01](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/BubbleSort.py), [Example 02](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/BubbleSortDec.py)
* Selection Sort - [Example 01](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/SelectionSort.py), [Example 02](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/SelectionSortDec.py)
* Heap Sort - [Example 01](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/HeapSort.py), [Example 02](https://github.com/paradocx96/IT2070-DSA-Python/blob/master/HeapSort_gfg.py)