Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
4828771366 | |||
81482b8c5e |
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Struktur -Pointer Referat
|
||||
|
||||
https://gitlab.heili.eu/school/structref/uploads/a252643f17c0a7c036bea20f900de44f/Struct-Pointer-Referat.pdf
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user