Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 542 Bytes

Readme.md

File metadata and controls

31 lines (27 loc) · 542 Bytes

Coding-Catchup

The idea is to practice time/space complexity, algorithms and data structures.

Sorting algorithms:

  • HeapSort
  • MergeSort
  • QuickSort
  • Elementary Sorting algorithms:
    • BubbleSort
    • SelectionSort
    • InsertionSort

Algorithm challenges:

  • Elements in common
  • First Recurring Character
  • Merge Sorted Arrays
  • Recursion Factorial
  • Recursion Fibonacci
  • Reverse String
  • Flood Depth
  • Longest Password

Data Structures:

  • BinarySearchTree
  • DoublyLinkedList
  • Graph
  • HashTable
  • LinkedList
  • Queue
  • Stack