ES: Algoritmos estructurados solo con arrays y valores centinela. Sin excepciones, sin estructuras avanzadas. La progresión va desde los más simples a los optimizados, incluyendo estructuras de datos implementadas con arrays.
EN: Algorithms structured with only arrays and sentinel values. No exceptions, no advanced structures. The progression goes from the simplest to the optimized, including data structures implemented with arrays.
| Módulo | Estado | Tema |
|---|---|---|
naive_sort |
✅ | bubble, insertion, selection (O(n²)) |
data_structures |
📋 | stack, queue, linked_list, tree, graph (con arrays) |
efficient_sort |
📋 | quick, merge, heap (O(n log n)) |
distributed_sort |
📋 | radix, bucket, shell, counting |
searching |
📋 | linear, binary, jump, interpolation |
ES: Los algoritmos O(n²) están implementados en
05_Sorting.md. Los módulosefficient_sortydistributed_sortse documentarán por separado. EN: O(n²) algorithms are implemented in05_Sorting.md. Theefficient_sortanddistributed_sortmodules will be documented separately.
naive_sortdata_structuresefficient_sortdistributed_sortsearching👉 Continúa con naive_sort.
👉 Continue with naive_sort.
| *← Volver a Core | ↑ Inicio* |