-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexercise10.tex
40 lines (30 loc) · 928 Bytes
/
exercise10.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
\documentclass[11pt]{article}
\include{packages}
\begin{document}
% ========== Edit your name here
%\author{Your Name}
\title{\coursename~Quiz 10: Due by \DueDate{\coursedate}{93}}
\date{Last exercise}
\maketitle
\medskip
% ========== Begin answering questions here
\section*{Exercises}
Please explain these features (4 credits)
\begin{enumerate}
\item Pointer
\item Object
\item Dynamic memory management
\item Automatic memory management
\end{enumerate}
\section*{Programming}
Linked list
\begin{itemize}
\item Write the generic struct which is needed for one element of the list (2 Credits).
\item write the function \lstinline|pop_front()| function to remove the first element of the list (2 credits).
\item write the function \lstinline|push_front(T value)| function to replace the first element (2 credits).
\end{itemize}
% ========== Continue adding items as needed
\doclicenseThis
\end{document}
\grid
\grid