This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from TeenBiscuits/dev
Versión Lista Para Publicación
- Loading branch information
Showing
11 changed files
with
115 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Algoritmos | ||
|
||
<tldr>Algunos algoritmos de interés general</tldr> | ||
|
||
<warning><b>¡En construcción! <a href="https://github.com/TeenBiscuits/Pro2324">Colabora</a></b></warning> | ||
|
||
### BubbleSort | ||
|
||
Descripción | ||
|
||
<code-block lang="c" src="./Extras/Algoritmos/BubbleSort.c" collapsible="true" collapsed-title="Mostrar código"></code-block> | ||
|
||
### Búsqueda Binaria | ||
|
||
Descripción | ||
|
||
<code-block lang="c" src="./Extras/Algoritmos/BusquedaBinaria.c" collapsible="true" collapsed-title="Mostrar código"></code-block> | ||
|
||
### Búsqueda Secuencial | ||
|
||
Descripción | ||
|
||
<code-block lang="c" src="./Extras/Algoritmos/BusquedaSecuencial.c" collapsible="true" collapsed-title="Mostrar código"></code-block> | ||
|
||
### Búsqueda Secuencial Centinela | ||
|
||
Descripción | ||
|
||
<code-block lang="c" src="./Extras/Algoritmos/BusquedaSecuencialCentinela.c" collapsible="true" collapsed-title="Mostrar código"></code-block> | ||
|
||
### QuickSort | ||
|
||
Descripción | ||
|
||
<code-block lang="c" src="./Extras/Algoritmos/QuickSort.c" collapsible="true" collapsed-title="Mostrar código"></code-block> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE topic | ||
SYSTEM "https://resources.jetbrains.com/writerside/1.0/xhtml-entities.dtd"> | ||
<topic xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/topic.v2.xsd" | ||
id="Extras" title="Extras"> | ||
|
||
<section-starting-page> | ||
<title>Extras</title> | ||
<description> | ||
Algunos prográmas extras interesantes para estudiantes más avanzados. | ||
</description> | ||
|
||
<spotlight> | ||
<a href="Tres-En-Raya.md" type="creative" summary="Juego del Tres En Raya escrito en C">Tres En Raya</a> | ||
<a href="Algoritmos.md" type="filtering" summary="Algunos algoritmos de interés general">Algoritmos</a> | ||
</spotlight> | ||
|
||
<primary> | ||
<title>Más extras</title> | ||
<a href="Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
</primary> | ||
|
||
<secondary> | ||
<title>Continuamos con más extras para bingo</title> | ||
<a href="Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
</secondary> | ||
|
||
</section-starting-page> | ||
|
||
|
||
</topic> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Tres En Raya | ||
|
||
<tldr>Juego del Tres En Raya escrito en C</tldr> | ||
|
||
<warning><b>¡En construcción! <a href="https://github.com/TeenBiscuits/Pro2324">Colabora</a></b></warning> | ||
|
||
<!-- DESCRIPCIÓN DEL PROGRAMA --> | ||
Descripción | ||
|
||
<code-block lang="c" src="./Extras/TresEnRaya.c" collapsible="true" collapsed-title="Mostrar código"></code-block> |