https://github.com/omkarpathak/ccdsap-prep
My Practice Problems for CodeChef Certified Data Structure & Algorithms Programme
https://github.com/omkarpathak/ccdsap-prep
Last synced: 9 months ago
JSON representation
My Practice Problems for CodeChef Certified Data Structure & Algorithms Programme
- Host: GitHub
- URL: https://github.com/omkarpathak/ccdsap-prep
- Owner: OmkarPathak
- License: gpl-3.0
- Created: 2018-09-24T14:38:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-05T15:58:51.000Z (about 7 years ago)
- Last Synced: 2025-03-29T12:51:19.137Z (10 months ago)
- Language: Python
- Size: 35.2 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CCDSAP-Prep
My Practice Problems for CodeChef Certified Data Structure & Algorithms Programme
# Asymptotic analysis (Big-O notation)
- [Example on how to analyze time complexity of algorithms](Codechef_Prep/analysis_of_algorithms/anagram_checking_off.py)
# Array
- [Implementation of Array in Python](Codechef_Prep/arrays/array.py)
- [Array Rotation](Codechef_Prep/arrays/array_operations/array_rotation.py)
- Practice Problems
- [CHN15A](Codechef_Prep/arrays/programs_on_array/CHN15A.py)
- [CNOTE](Codechef_Prep/arrays/programs_on_array/CNOTE.py)
- [LECANDY](Codechef_Prep/arrays/programs_on_array/LECANDY.py)
- [RAINBOWA](Codechef_Prep/arrays/programs_on_array/RAINBOWA.py)
# Stack
- [Implementation of Stack in Python](Codechef_Prep/stack/stack.py)
- [Reverse Stack using recursion](Codechef_Prep/stack/reverse_stack_using_recursion.py)
- [Sort Stack using recursion](Codechef_Prep/stack/sort_stack_using_recusrion.py)
- [Infix to Postfix conversion](Codechef_Prep/stack/infix_to_postfix.py)
- [Postfix to Infix conversion](Codechef_Prep/stack/postfix_to_infix.py)
- [Infix to Prefix](Codechef_Prep/stack/infix_to_prefix.py)
- [Implementation of Stack using Queue](Codechef_Prep/stack/stack_using_queue.py)
- Practice Problems
- [COMPILER](Codechef_Prep/stack/compiler.py)
# Queue
- [Implementation of Queue in Python](Codechef_Prep/queue/queue.py)
- [Implementation of Queue using Stack](Codechef_Prep/queue/queue_using_stack.py)
- [Implementation of Priority Queue](Codechef_Prep/queue/priority_queue.py)
- [Implementation of Circular Queue](Codechef_Prep/queue/circular_queue.py)