FAOD-DUI4/Support/support.tex

107 lines
2.5 KiB
TeX

\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{multicol}
\columnseprule 0.4pt\raggedcolumns
\usetheme{Warsaw}
\title{Pile et File}
\author{Cédric et Benjamin}
\date{}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}[fragile]{Pile et File}
\begin{minipage}{0.65\linewidth}
\textbf{Pile}
\begin{center}
\includegraphics[scale=0.8]{./pile}
\end{center}
\medskip
\textbf{File}
\begin{center}
\includegraphics[scale=0.8]{./file}
\end{center}
\textbf{Interface commune}
\textbf{Attributs} \verb|current|; \verb|n|
\textbf{Méthodes:} \verb|append|, \verb|pop|, \verb|get_current|, \verb|is_empty|, \verb|empty|
\end{minipage}
\begin{minipage}{0.3\linewidth}
\textbf{Enveloppe pour les éléments stockés (Node)}
\begin{center}
\includegraphics[scale=0.4]{../blackjack/deck_img02}
\end{center}
\end{minipage}
\end{frame}
\begin{frame}[fragile]{Projets (au choix)}
\textbf{Objectif}: utiliser une Pile et/ou une File dans la réalisation d'un des projets suivant.
\begin{multicols}{2}
\textbf{Blackjack}
\includegraphics[scale=0.15]{./Blackjack}
\columnbreak
\textbf{Maze}
\begin{center}
\tiny
\begin{verbatim}
####
#e #
## ########
####### # #
# # # # # # # ##
# # ## # #
### ## # # # #########
# # ## # ## # # #
## # # ## # # # #
# ## # ### # # ### # #
# ### # # ## ## # ##
##### # # ## # # #
# # ### # # # ### ### ##
# ## # # # ## #
# ## ## # ## ## # #
## # # # # ## ## # ###
## ## # # # # # # ###
# ##### # # # ###
## # # # # #s###
######## ###########
\end{verbatim}
\end{center}
\end{multicols}
\end{frame}
\begin{frame}{Consignes}
\textbf{Étapes}
\begin{itemize}
\item Compléter les classes \texttt{Pile} et \texttt{File}
\item Choisir un des deux projets
\item Copier les fichiers \texttt{pile.py} et \texttt{file.py} complété dans le projet choisi.
\item Réalisé le projet choisi.
\end{itemize}
\textbf{Déroulement des séances}
\begin{itemize}
\item 15 minutes sans toucher le clavier.
\item Toutes les 10minutes, la personne qui a le clavier change.
\end{itemize}
\end{frame}
\end{document}