Compare commits

2 Commits

Author SHA1 Message Date
Danyar
71f879c59f sfsdgfjl.lj 2023-04-25 11:17:26 +02:00
Danyar
31660b14f1 kommentar entfernt 2023-04-25 10:56:10 +02:00
3 changed files with 37 additions and 36 deletions

View File

@@ -23,38 +23,42 @@ class ARBEIT
g = new GRAPH_MATRIX (14); g = new GRAPH_MATRIX (14);
g. KnotenEinfuegen ("A"); g. KnotenEinfuegen ("A");
g. KnotenEinfuegen ("F"); g. KnotenEinfuegen ("b");
g. KnotenEinfuegen ("FD"); g. KnotenEinfuegen ("c");
g. KnotenEinfuegen ("HO"); g. KnotenEinfuegen ("d");
g. KnotenEinfuegen ("KA"); g. KnotenEinfuegen ("e");
g. KnotenEinfuegen ("LI"); g. KnotenEinfuegen ("f");
g. KnotenEinfuegen ("M"); g. KnotenEinfuegen ("g");
g. KnotenEinfuegen ("N"); g. KnotenEinfuegen ("h");
g. KnotenEinfuegen ("PA"); g. KnotenEinfuegen ("i");
g. KnotenEinfuegen ("R"); g. KnotenEinfuegen ("j");
g. KnotenEinfuegen ("RO"); g. KnotenEinfuegen ("k");
g. KnotenEinfuegen ("S"); g. KnotenEinfuegen ("l");
g. KnotenEinfuegen ("UL"); g. KnotenEinfuegen ("m");
g. KnotenEinfuegen ("W\u00DC"); g. KnotenEinfuegen ("n");
g. KnotenEinfuegen ("o");
g. KnotenEinfuegen ("p");
g. KnotenEinfuegen ("zi");
g. KnotenEinfuegen ("start");
g. KanteEinfuegen ("W\u00DC", "N", 104); g. KanteEinfuegen ("start", "A", 1);
g. KanteEinfuegen ("N", "R", 80); g. KanteEinfuegen ("A", "b", 1);
g. KanteEinfuegen ("HO", "W\u00DC", 192); g. KanteEinfuegen ("A", "d", 1);
g. KanteEinfuegen ("HO", "N", 116); g. KanteEinfuegen ("b", "c", 1);
g. KanteEinfuegen ("HO", "R", 166); g. KanteEinfuegen ("b", "i", 1);
g. KanteEinfuegen ("FD", "W\u00DC", 98); g. KanteEinfuegen ("i", "h", 1);
g. KanteEinfuegen ("M", "A", 64); g. KanteEinfuegen ("i", "p", 1);
g. KanteEinfuegen ("M", "N", 163); g. KanteEinfuegen ("p", "o", 1);
g. KanteEinfuegen ("M", "R", 117); g. KanteEinfuegen ("p", "n", 1);
g. KanteEinfuegen ("M", "RO", 60); g. KanteEinfuegen ("n", "l", 1);
g. KanteEinfuegen ("UL", "A", 59); g. KanteEinfuegen ("n", "m", 1);
g. KanteEinfuegen ("UL", "W\u00DC", 165); g. KanteEinfuegen ("m", "k", 1);
g. KanteEinfuegen ("UL", "LI", 126); g. KanteEinfuegen ("m", "j", 1);
g. KanteEinfuegen ("UL", "S", 103); g. KanteEinfuegen ("m", "j", 1);
g. KanteEinfuegen ("S", "KA", 53); g. KanteEinfuegen ("j", "zi", 1);
g. KanteEinfuegen ("S", "F", 127); g. KanteEinfuegen ("j", "e", 1);
g. KanteEinfuegen ("R", "PA", 72); g. KanteEinfuegen ("e", "f", 1);
g. KanteEinfuegen ("F", "W\u00DC", 131); g. KanteEinfuegen ("", "", 1);
// Formatiertes Ausgeben der Adjazenzmatrix in der Konsole // Formatiertes Ausgeben der Adjazenzmatrix in der Konsole
System. out. println ("Matrix"); System. out. println ("Matrix");

View File

@@ -1,8 +1,5 @@
/**
* Verwaltet einen Knoten des Graphen. * @author Albert Wiedemann
* @version 1.0
*/
class KNOTEN class KNOTEN
{ {

View File

@@ -1,5 +1,5 @@
------------------------------------------------------------------------ ------------------------------------------------------------------------
Hallo zusammen! This is the project README file. Here, you should describe your project. Testedit:This is the project README file. Here, you should describe your project.
Tell the reader (someone who does not know anything about this project) Tell the reader (someone who does not know anything about this project)
all he/she needs to know. The comments should usually include at least: all he/she needs to know. The comments should usually include at least:
------------------------------------------------------------------------ ------------------------------------------------------------------------