Algorithms

Sorting Algorithms

Techniques for arranging elements in a specific order, such as bubble sort, quicksort, and mergesort.

Search Algorithms

Methods for finding an element in a data structure, including linear search and binary search.

Graph Algorithms

Algorithms to process graphs, including Dijkstra's shortest path and depth-first search (DFS).

Dynamic Programming

A method for solving complex problems by breaking them down into simpler subproblems.

Greedy Algorithms

Algorithms that make the best choice at each step, aiming for a locally optimal solution.