Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caslus/estrutura-dados-tde01
tde 1 estrutura de dados
https://github.com/caslus/estrutura-dados-tde01
Last synced: about 1 month ago
JSON representation
tde 1 estrutura de dados
- Host: GitHub
- URL: https://github.com/caslus/estrutura-dados-tde01
- Owner: Caslus
- Created: 2023-08-27T22:43:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-27T23:03:26.000Z (over 1 year ago)
- Last Synced: 2023-08-27T23:47:07.572Z (over 1 year ago)
- Language: Java
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TDE 01 - Estrutura de dados
Aluno: Lucas Philippe Nunes de Lima
## Passo a passo para execução dos arquivos:
> git clone https://github.com/Caslus/estrutura-dados-tde01
> cd estrutura-dados-tde01
> java ./Main.java
### Exemplos utilizados
#### Fila:
- Adicionar números 1, 2, 3, 4 e 5.
- Remover números.
#### Pilha:
- Adicionar números 1, 2, 3, 4 e 5.
- Remover números.
#### Merge:
- Adicionar números 3, 5, 8 e 10 na lista A.
- Adicionar números 1, 4, 6, 7 e 9 na lista B.
- Realizar merge.
- Remover números.