Skip to content

Commit

Permalink
General changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinLatino committed May 11, 2024
1 parent 6ee3686 commit 57b9563
Showing 1 changed file with 37 additions and 7 deletions.
44 changes: 37 additions & 7 deletions src/Articles/DataStructureScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,6 @@ console.log(animal.especie)

<Space />

<Title>
Ordenamiento
</Title>


<div className='flex gap-28'>
<BlueSection>
<BlueTitle>
Expand All @@ -172,6 +167,41 @@ console.log(animal.especie)

<Space />

<Title>
Algoritmos de Ordenamiento de Vectores
</Title>
<Paragraph>
Existen 3 tipos de métodos de ordenamiento.
</Paragraph>

<Space />

<div className='flex gap-10'>
<BlueSection>
<BlueTitle>
Ordenamiento de Burbuja
</BlueTitle>
<Paragraph>

</Paragraph>

</BlueSection>

<PurpleSection>
<PurpleTitle>
Ordenamiento por Selección
</PurpleTitle>
</PurpleSection>

<GreenSection>
<GreenTitle>
Ordenamiento por Inserción
</GreenTitle>
</GreenSection>
</div>

<Space />

<Title>
Estructuras de Datos Dinámicas
</Title>
Expand Down Expand Up @@ -231,7 +261,7 @@ console.log(animal.especie)

<Space />

<div className='flex justify-evenly'>
<div className='flex gap-16'>
<GreenSection>
<GreenTitle>
Pilas o FIFO's (First In First Out)
Expand Down Expand Up @@ -290,7 +320,7 @@ console.log(animal.especie)

<Space />

<div className='flex justify-evenly'>
<div className='flex gap-16'>
<BlueSection>
<BlueTitle>
Preorden: Raíz al inicio
Expand Down

0 comments on commit 57b9563

Please sign in to comment.