139 lines
3.9 KiB
TeX
139 lines
3.9 KiB
TeX
\documentclass[a4paper,french,12pt]{article}
|
|
|
|
\title{Théorie des graphes --- Exercices}
|
|
\author{}
|
|
\date{Dernière compilation~: \today{} à \currenttime}
|
|
|
|
\usepackage{styles}
|
|
\usepackage{tikz}
|
|
\usetikzlibrary{shapes.multipart}
|
|
\usetikzlibrary{automata, arrows.meta, positioning}
|
|
|
|
\begin{document}
|
|
|
|
\maketitle
|
|
|
|
\section{TD1 --- Partie 1}
|
|
|
|
\subsection{Exercice 1}
|
|
|
|
\paragraph{Graphe simple}
|
|
\begin{tikzpicture}[auto,x=2cm,y=2cm]
|
|
\node(a)[state] at (0,0) {};
|
|
\node(b)[state] at (2,0) {};
|
|
\path (a) edge (b);
|
|
\end{tikzpicture}
|
|
|
|
\paragraph{Graphe multigraphe}
|
|
\begin{tikzpicture}[auto,x=2cm,y=2cm]
|
|
\node(a)[state] at (0,0) {};
|
|
\node(b)[state] at (2,0) {};
|
|
\path
|
|
(a) [bend left] edge (b)
|
|
(b) [bend left] edge (a)
|
|
;
|
|
\end{tikzpicture}
|
|
|
|
\paragraph{Graphe connexe}
|
|
\begin{tikzpicture}[auto,x=2cm,y=2cm]
|
|
\node(a)[state] at (0,0) {};
|
|
\node(b)[state] at (1,1) {};
|
|
\node(c)[state] at (2,0) {};
|
|
\path
|
|
(a) edge (b)
|
|
(b) edge (c)
|
|
(c) edge (a)
|
|
;
|
|
\end{tikzpicture}
|
|
|
|
\paragraph{Graphe non connexe}
|
|
\begin{tikzpicture}[auto,x=2cm,y=2cm]
|
|
\node(a)[state] at (0,0) {};
|
|
\node(b)[state] at (1,1) {};
|
|
\node(c)[state] at (2,0) {};
|
|
\path
|
|
(a) edge (b)
|
|
(b) edge (c)
|
|
;
|
|
\end{tikzpicture}
|
|
|
|
\paragraph{Graphe complet}
|
|
\begin{tikzpicture}[auto,x=2cm,y=2cm]
|
|
\node(a)[state] at (0,0) {};
|
|
\node(b)[state] at (1,0) {};
|
|
\node(c)[state] at (0,1) {};
|
|
\node(d)[state] at (1,1) {};
|
|
\path
|
|
(a) edge (b)
|
|
(a) edge (c)
|
|
(a) edge (d)
|
|
(b) edge (c)
|
|
(b) edge (d)
|
|
(c) edge (d)
|
|
;
|
|
\end{tikzpicture}
|
|
|
|
\paragraph{Graphe biparti}
|
|
\begin{tikzpicture}[auto,x=2cm,y=2cm]
|
|
\node(a)[state] at (0,0) {};
|
|
\node(b)[state] at (1,0) {};
|
|
\node(c)[state] at (0,1) {};
|
|
\node(d)[state] at (1,1) {};
|
|
\node(e)[state] at (2,0) {};
|
|
\node(f)[state] at (2,1) {};
|
|
\path
|
|
(a) edge (b)
|
|
(a) edge (c)
|
|
(a) edge (d)
|
|
(b) edge (c)
|
|
(b) edge (d)
|
|
(c) edge (d)
|
|
(d) edge (e)
|
|
(d) edge (f)
|
|
(e) edge (f)
|
|
;
|
|
\end{tikzpicture}
|
|
|
|
\section{TD1 --- Partie 2}
|
|
|
|
\subsection{Exercice 1}
|
|
|
|
Dans le graphe ci-dessous~:
|
|
|
|
\includegraphics[width=\linewidth]{./img/td1-ex1.png}
|
|
|
|
\begin{enumerate}
|
|
|
|
\item Quels sont les successeurs de A, D et E~?
|
|
|
|
A~: B, F \\
|
|
B~: A, C, D, J \\
|
|
E~: D, F
|
|
|
|
\item Quels sont les prédécesseurs de B, C et F~?
|
|
|
|
B~: A, C, D \\
|
|
C~: B, D \\
|
|
F~: A, E
|
|
|
|
\item Est-ce qu'il y a des points qui n'ont pas de prédécesseur, ni successeur~?
|
|
Lesquels~?
|
|
|
|
G
|
|
|
|
\item Quelle est l'extrémité initiale de l'arc $(A,B)$~?
|
|
|
|
A
|
|
|
|
\item Quelle est l'extrémité terminale de l'arc $(B,C)$~?
|
|
|
|
C
|
|
|
|
\item Est-ce qu'il y a des points qui ont à la fois l'extrémité initiale et terminale~?
|
|
Lesquels~?
|
|
|
|
A, B, C, D, E, F
|
|
|
|
\end{enumerate}
|
|
|
|
\end{document}
|