Skip to content

Commit

Permalink
feat (class/relationship): resolution of the exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
santanche committed Apr 13, 2021
1 parent 8da298f commit c5f19f2
Show file tree
Hide file tree
Showing 3 changed files with 155 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Todos os exemplos no diretório `notebook` são preparados para o ambiente Jupyt
## Abrir branch específico em uma instância do [binderhub](https://github.com/jupyterhub/binderhub)

* Última versão testada e estável:
[![launch @ mybinder.org][badge-jupyterlab-mybinder-org]](https://mybinder.org/v2/gh/santanche/java2learn/v1.1.2?urlpath=lab)
[![launch @ mybinder.org][badge-jupyterlab-mybinder-org]](https://mybinder.org/v2/gh/santanche/java2learn/v1.1.3?urlpath=lab)

* Última versão disponível:
[![launch @ mybinder.org][badge-jupyterlab-mybinder-org]](https://mybinder.org/v2/gh/santanche/java2learn/master?urlpath=lab)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "featured-appendix",
"metadata": {},
"source": [
"# Primeiro Tabuleiro"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "juvenile-silicon",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"com.twosigma.beaker.javash.bkr0f150d79.Peca"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"public class Peca {\n",
" Peca esquerda = null,\n",
" direita = null;\n",
"\n",
" public void pecaEsquerda(Peca pc) {\n",
" esquerda = pc;\n",
" }\n",
" \n",
" public void pecaDireita(Peca pc) {\n",
" direita = pc;\n",
" }\n",
" \n",
" public String mostra() {\n",
" return \"#\";\n",
" }\n",
"}"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "patent-humanitarian",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"com.twosigma.beaker.javash.bkr0f150d79.Tabuleiro"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"public class Tabuleiro {\n",
" Peca tab[];\n",
" \n",
" public Tabuleiro() {\n",
" tab = new Peca[10];\n",
" }\n",
" \n",
" public void inserePeca(Peca pc, int posicao) {\n",
" if (posicao < tab.length) {\n",
" tab[posicao] = pc;\n",
" if (posicao > 0) {\n",
" pc.pecaEsquerda(tab[posicao-1]);\n",
" if (tab[posicao-1] != null)\n",
" tab[posicao-1].pecaDireita(pc);\n",
" } else\n",
" pc.pecaEsquerda(null);\n",
" if (posicao < tab.length - 1) {\n",
" pc.pecaDireita(tab[posicao+1]);\n",
" if (tab[posicao+1] != null)\n",
" tab[posicao+1].pecaEsquerda(pc);\n",
" } else\n",
" pc.pecaDireita(null);\n",
" }\n",
" }\n",
" \n",
" public String mostra() {\n",
" String result = \"\";\n",
" for (int t = 0; t < tab.length; t++)\n",
" result += (tab[t] == null) ? \".\" : tab[t].mostra();\n",
" return result;\n",
" }\n",
"}"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "comparative-calibration",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
".#.##..###\n"
]
},
{
"data": {
"text/plain": [
"null"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Tabuleiro tabl = new Tabuleiro();\n",
"int posicoes[] = {1, 3, 4, 7,8, 9};\n",
"for (int p = 0; p < posicoes.length; p++)\n",
" tabl.inserePeca(new Peca(), posicoes[p]);\n",
"System.out.println(tabl.mostra());"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Java",
"language": "java",
"name": "java"
},
"language_info": {
"codemirror_mode": "text/x-java",
"file_extension": ".java",
"mimetype": "",
"name": "Java",
"nbconverter_exporter": "",
"version": "1.8.0_121"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
{
"cell_type": "code",
"execution_count": 1,
"id": "adjusted-astrology",
"id": "absent-motorcycle",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"com.twosigma.beaker.javash.bkr2da291e3.Peca"
"com.twosigma.beaker.javash.bkr010bf114.Peca"
]
},
"execution_count": 1,
Expand Down Expand Up @@ -39,13 +39,13 @@
{
"cell_type": "code",
"execution_count": 2,
"id": "stunning-bailey",
"id": "twelve-reality",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"com.twosigma.beaker.javash.bkr2da291e3.Tabuleiro"
"com.twosigma.beaker.javash.bkr010bf114.Tabuleiro"
]
},
"execution_count": 2,
Expand Down Expand Up @@ -91,7 +91,7 @@
{
"cell_type": "code",
"execution_count": 3,
"id": "billion-catalog",
"id": "patient-background",
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -119,14 +119,6 @@
" tabl.inserePeca(new Peca(), posicoes[p]);\n",
"System.out.println(tabl.mostra());"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "hybrid-vertex",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down

0 comments on commit c5f19f2

Please sign in to comment.