Newer
Older
{
"nodes": [
{
"id": "id1",
"name": "Algorithmen und Datenstrukturen 1"
},
{
"id": "id2",
"name": "Graphen"
},
{
"id": "id3",
"name": "Suche in Graphen"
},
{
"id": "id4",
"name": "Dynamische Datenstrukturen"
},
{
"id": "id5",
"name": "Graphendefinition"
},
{
"id": "id6",
"image": "eulertouren.png",
"description": "Ein Eulerkreis ist in der Graphentheorie ein Zyklus, der alle Kanten eines Graphen genau einmal enthält. Ein offener Eulerzug (auch Eulerpfad oder Eulerweg) ist gegeben, wenn Start- und Endknoten nicht gleich sein müssen, wenn also statt eines Zyklus lediglich eine Kantenfolge verlangt wird, welche jede Kante des Graphen genau einmal enthält. Ein bekanntes Beispiel ist das Haus vom Nikolaus. Dieser Text braucht noch eine Zeile, damit er gescrollt werden muss."
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
},
{
"id": "id7",
"name": "Wege in Graphen"
},
{
"id": "id8",
"name": "Vorlesung 2"
},
{
"id": "id9",
"name": "Vorlesung 3"
},
{
"id": "id10",
"name": "Wege in Graphen"
},
{
"id": "id11",
"name": "Bedingungen für Eulertouren"
},
{
"id": "id12",
"name": "Vorlesung 4"
}
],
"links": [
{
"source": "id1",
"target": "id2",
"type": "Thema"
},
{
"source": "id1",
"target": "id3",
"type": "Thema"
},
{
"source": "id1",
"target": "id4",
"type": "Thema"
},
{
"source": "id2",
"target": "id5",
"type": "Thema"
},
{
"source": "id2",
"target": "id6",
"type": "Thema"
},
{
"source": "id2",
"target": "id7",
"type": "Thema"
},
{
"source": "id2",
"target": "id8",
"type": "Vorlesung"
},
{
"source": "id2",
"target": "id9",
"type": "Vorlesung"
},
{
"source": "id2",
"target": "id10",
"type": "Thema"
},
{
"source": "id8",
"target": "id5",
"type": "Inhalt"
},
{
"source": "id8",
"target": "id6",
"type": "Inhalt"
},
{
"source": "id9",
"target": "id10",
"type": "Inhalt"
},
{
"source": "id5",
"target": "id6",
"type": "Voraussetzung"
},
{
"source": "id6",
"target": "id11",
"type": "Voraussetzung"
},
{
"source": "id2",
"target": "id12",
"type": "Voraussetzung"
}
]
}