An open API service indexing awesome lists of open source software.

https://github.com/arturbomtempo-learning/pucminas-aeds2-assignments

Content developed throughout the Data Structures and Algorithms II course in the second semester of the Computer Science program at PUC Minas, including exercises, activities, and other implementations.
https://github.com/arturbomtempo-learning/pucminas-aeds2-assignments

algorithms binary-search binary-tree bubble-sort c data-structures heap-sort insertion-sort java list queue quicksort radix-sort searching-algorithms selection-sort sequential-search sorting-algorithms stack

Last synced: 3 months ago
JSON representation

Content developed throughout the Data Structures and Algorithms II course in the second semester of the Computer Science program at PUC Minas, including exercises, activities, and other implementations.

Awesome Lists containing this project

README

          



PUC Minas - Data Structures and Algorithms II (DSA2) - Activities and Implementations



This repository was developed with the aim of consolidating the concepts of Algorithms and Data Structures II (AEDS2) in a practical and applied way. It contains implementations of abstract data structures, sorting algorithms, search algorithms, and other essential topics from the course. Additionally, it includes the code for practical and theoretical activities, Beecrowd exercises for exam revision, and other materials to assist students' learning, offering practical examples that complement the theoretical content from the course at PUC Minas.


Repository banner





Languages: C & Java


Version: 1.0.0


Contributions: Welcome


License: MIT

## πŸ“‹ Table of Contents

- [About](#about)
- [Table of Contents](#table-of-contents)
- [Features](#features)
- [Setup and Run the Application](#setup-and-run-the-application)
- [Technologies](#technologies)
- [Author](#author)
- [License](#license)

## πŸ“ Features

- [x] Implementations of abstract data structures
- [x] Search algorithms
- [x] Primary memory sorting algorithms
- [x] Sorting and searching algorithms
- [x] Flexible data structures
- [x] Binary Tree
- [x] Binary Tree Balancing
- [x] Hash Table
- [x] Laboratory exercises
- [x] Practical works
- [x] Theoretical works
- [x] Beecrowd revision exercises for the exam

## πŸ“ Setup and Run the Application

### βš™οΈ Prerequisites

Before getting started, you need to have the following tools installed on your machine:

- [Java](https://www.java.com/pt-BR/) and [JDK](https://www.oracle.com/java/technologies/javase-jdk11-downloads.html) to compile and run Java files.
- [GCC](https://gcc.gnu.org/) to compile and run C files.

It is also recommended to use a code editor like [Visual Studio Code](https://code.visualstudio.com/).

### πŸš€ How to Run the Application Locally

#### To run the Java application:

1. Open the folder where the `Main.java` file is located:

```bash
$ cd path/to/java/folder
```

2. Compile the Java code:

```bash
$ javac Main.java
```

3. Run the Java application:

```bash
$ java Main
```

#### To run the C application:

1. Open the folder where the `Main.c` file is located:

```bash
$ cd path/to/c/folder
```

2. Compile the C code:

```bash
$ gcc -o main Main.c
```

3. Run the C application:

```bash
$ ./main
```

## πŸ’» Technologies

The following tools and programming languages were used in the development of this project:

- [Java](https://www.java.com/en/): A widely-used programming language for desktop, web, and mobile applications, with support for object-oriented programming and robustness in enterprise systems.
- [C](https://devdocs.io/c/): A programming language used for high-performance systems, providing direct control over hardware.

## πŸ‘¨πŸ»β€πŸ’» Autor

---

| [
Artur Bomtempo](https://arturbomtempo.dev/) |
| :--------------------------------------------------------------------------------------------------------------------------------------------------: |

Developed by Artur Bomtempo πŸ‘‹πŸ». Get in touch:

[![Gmail Badge](https://img.shields.io/badge/-arturbcolen@gmail.com-D14836?style=flat-square&logo=Gmail&logoColor=white&link=mailto:arturbcolen@gmail.com)](mailto:arturbcolen@gmail.com)
[![LinkedIn Badge](https://img.shields.io/badge/-Artur%20Bomtempo-0A66C2?style=flat-square&logo=LinkedIn&logoColor=white&link=https://www.linkedin.com/in/artur-bomtempo/)](https://www.linkedin.com/in/artur-bomtempo/)
[![Instagram Badge](https://img.shields.io/badge/-@arturbomtempo.dev-E4405F?style=flat-square&logo=Instagram&logoColor=white&link=https://www.instagram.com/arturbomtempo.dev/)](https://www.instagram.com/arturbomtempo.dev/)

## πŸ“œ LicenΓ§a

Copyright (c) 2025 Artur Bomtempo Colen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.