An open API service indexing awesome lists of open source software.

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

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)