Esdat Unit 2 Activity 2
Esdat Unit 2 Activity 2
TECNOLOGÍAS DE LA INFORMACIÓN
PRESENTA:
Contenido
Sorting Methods in Arrays:...................................................................................3
Concept:........................................................................................................... 3
Application:.......................................................................................................3
Concept:........................................................................................................... 3
Application:.......................................................................................................3
Concept:........................................................................................................... 4
Application:.......................................................................................................4
Concept:........................................................................................................... 4
Application:.......................................................................................................4
Imagen 1 Introduction.......................................................................................... 3
Imagen 2 Introduction 2....................................................................................... 3
Imagen 3 Desarrollo.............................................................................................4
Imagen 4 Desarrollo 2..........................................................................................4
Introduction.
Sorting Methods in Arrays:
Concept: Bubble Sort is a simple sorting algorithm that repeatedly steps
through the list, compares adjacent elements, and swaps them if they are in the
wrong order. The pass through the list is repeated until the list is sorted.
Application: It's suitable for small datasets but less efficient for large datasets.
Imagen 1 Introduction
Concept: Merge Sort is a divide and conquer algorithm that divides the input
array into two halves, recursively sorts each half, and then merges the sorted
halves.
Application: It's more efficient than Bubble Sort for larger datasets and is a
stable sorting algorithm.
Imagen 2 Introduction 2
Search Methods in Arrays:
Concept: Linear Search is a simple search algorithm that iterates through each
element in the array until the target element is found or the end of the array is
reached.
Imagen 3 Desarrollo
Imagen 4 Desarrollo 2