Categoría Algorithms

This category, has all the topics related with the algorithms, like the type complexity and data structures

Three-Step Reversal Algorithm

This technique is a popular and efficient approach for rotating an array to the right without using any extra space.
Involves three main steps:
Reverse the entire array, Reverse the first k elements of the array, and Reverse the remaining n-k elements of the array.

Bubble sort

The Bubble sort is the simplest algorithm to sort arrays. The goal is to sort a list of elements in the order that we need, comparing a pair of adjacent elements and perform a swap of these elements if they are in the wrong order (the most of the time is the ascending order).

Complexity Theory

The Complexity Theory seeks to analyze and classify problems according to their degree of difficulty and find theoretical limits on the efficiency of algorithms.