This repository has been archived by the owner on Dec 12, 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 #100 from TeenBiscuits/Crear-Ejemplos
Creado Ejemplo Rational TAD
- Loading branch information
Showing
8 changed files
with
81 additions
and
6 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,43 @@ | ||
<?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" | ||
title="Ejemplos" id="04-Ejemplos" help-id="Ejemplos"> | ||
|
||
<!-- | ||
SPDX-FileCopyrightText: 2024 Pablo Portas López <[email protected]> | ||
SPDX-License-Identifier: CC-BY-NC-4.0 | ||
--> | ||
|
||
<section-starting-page> | ||
<title>Ejemplos</title> | ||
<description> | ||
Ejemplos sencillos y no tan sencillos, algunos sacados de clases de prácticas. | ||
</description> | ||
|
||
<spotlight> | ||
<a href="Rational-TAD-El-codigo.md" type="server" summary="Un TAD para los números racionales, es decir, un par de números enteros: Numerador y denominador."/> | ||
<a href="01-Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
</spotlight> | ||
|
||
<primary> | ||
<title>Otros ejemplos interesantes</title> | ||
<a href="01-Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="01-Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="01-Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="01-Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
</primary> | ||
|
||
<secondary> | ||
<title>Ejemplos más avanzados</title> | ||
<a href="01-Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="01-Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="01-Pro2324.topic" type="lock" summary="Próximamente...">Próximamente...</a> | ||
<a href="01-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!-- | ||
SPDX-FileCopyrightText: 2024 Pablo Portas López <[email protected]> | ||
SPDX-License-Identifier: CC-BY-NC-4.0 | ||
--> | ||
|
||
# Rational TAD | ||
|
||
<tldr> | ||
Un TAD para los números racionales, es decir, un par de números enteros: Numerador y denominador. | ||
</tldr> | ||
|
||
<tip>Copyright © Facultade de Informática da Coruña</tip> | ||
|
||
<code-block lang="C" src="./Ejemplos/TAD_Rational/main.c" collapsible="true" collapsed-title="main.c"/> | ||
|
||
<code-block lang="C" src="./Ejemplos/TAD_Rational/rational_pointer.c" collapsible="true" collapsed-title="rational_pointer.c"/> | ||
|
||
<code-block lang="C" src="./Ejemplos/TAD_Rational/rational_pointer.h" collapsible="true" collapsed-title="rational_pointer.h"/> | ||
|
||
<code-block lang="C" src="./Ejemplos/TAD_Rational/rational_struct.c" collapsible="true" collapsed-title="rational_struct.c"/> | ||
|
||
<code-block lang="C" src="./Ejemplos/TAD_Rational/rational_struct.h" collapsible="true" collapsed-title="rational_struct.h"/> | ||
|
||
<code-block lang="CMAKE" src="./Ejemplos/TAD_Rational/CMakeLists.txt" collapsible="true" collapsed-title="CMakeLists.txt"/> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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