Compare commits

...

2 Commits
v1.0 ... master

2 changed files with 5 additions and 2 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Struktur -Pointer Referat
https://gitlab.heili.eu/school/structref/uploads/a252643f17c0a7c036bea20f900de44f/Struct-Pointer-Referat.pdf

View File

@ -281,12 +281,12 @@ int main(){
\begin{frame}[fragile]{Verkettete Listen}
\begin{lstlisting}
struct Node {
struct node {
int data;
struct node* next; /* Typ Node hier nicht moeglich
da erst spaeter definiert */
};
typedef struct Node Node;
typedef struct node Node;
void beispiel() {
// Erstellen von root