1
0
forked from burkart/GUI

Compare commits

2 Commits

Author SHA1 Message Date
b9dea20e2b Merge commit '95f98e3f4cf5dce1b50b05437dbac12a0f4075bb' 2023-04-25 10:52:44 +02:00
e6d03f5e9c Readme geändert 2023-04-25 10:52:04 +02:00
2 changed files with 35 additions and 41 deletions

View File

@@ -23,42 +23,38 @@ class ARBEIT
g = new GRAPH_MATRIX (14); g = new GRAPH_MATRIX (14);
g. KnotenEinfuegen ("A"); g. KnotenEinfuegen ("A");
g. KnotenEinfuegen ("B");
g. KnotenEinfuegen ("C");
g. KnotenEinfuegen ("D");
g. KnotenEinfuegen ("E");
g. KnotenEinfuegen ("F"); g. KnotenEinfuegen ("F");
g. KnotenEinfuegen ("G"); g. KnotenEinfuegen ("FD");
g. KnotenEinfuegen ("H"); g. KnotenEinfuegen ("HO");
g. KnotenEinfuegen ("I"); g. KnotenEinfuegen ("KA");
g. KnotenEinfuegen ("J"); g. KnotenEinfuegen ("LI");
g. KnotenEinfuegen ("K");
g. KnotenEinfuegen ("L");
g. KnotenEinfuegen ("M"); g. KnotenEinfuegen ("M");
g. KnotenEinfuegen ("N"); g. KnotenEinfuegen ("N");
g. KnotenEinfuegen ("O"); g. KnotenEinfuegen ("PA");
g. KnotenEinfuegen ("P"); g. KnotenEinfuegen ("R");
g. KnotenEinfuegen ("Ziel"); g. KnotenEinfuegen ("RO");
g. KnotenEinfuegen ("S");
g. KnotenEinfuegen ("UL");
g. KanteEinfuegen ("A", "B", 1); g. KnotenEinfuegen ("W\u00DC");
g. KanteEinfuegen ("A", "D", 1);
g. KanteEinfuegen ("B", "C", 1);
g. KanteEinfuegen ("B", "I", 1);
g. KanteEinfuegen ("I", "H", 1);
g. KanteEinfuegen ("I", "P", 1);
g. KanteEinfuegen ("P", "N", 1);
g. KanteEinfuegen ("P", "O", 1);
g. KanteEinfuegen ("N", "L", 1);
g. KanteEinfuegen ("N", "M", 1);
g. KanteEinfuegen ("M", "K", 1);
g. KanteEinfuegen ("M", "J", 1);
g. KanteEinfuegen ("J", "Ziel", 1);
g. KanteEinfuegen ("D", "G", 1);
g. KanteEinfuegen ("D", "E", 1);
g. KanteEinfuegen ("E", "F", 1);
g. KanteEinfuegen ("E", "J", 1);
g. KanteEinfuegen ("W\u00DC", "N", 104);
g. KanteEinfuegen ("N", "R", 80);
g. KanteEinfuegen ("HO", "W\u00DC", 192);
g. KanteEinfuegen ("HO", "N", 116);
g. KanteEinfuegen ("HO", "R", 166);
g. KanteEinfuegen ("FD", "W\u00DC", 98);
g. KanteEinfuegen ("M", "A", 64);
g. KanteEinfuegen ("M", "N", 163);
g. KanteEinfuegen ("M", "R", 117);
g. KanteEinfuegen ("M", "RO", 60);
g. KanteEinfuegen ("UL", "A", 59);
g. KanteEinfuegen ("UL", "W\u00DC", 165);
g. KanteEinfuegen ("UL", "LI", 126);
g. KanteEinfuegen ("UL", "S", 103);
g. KanteEinfuegen ("S", "KA", 53);
g. KanteEinfuegen ("S", "F", 127);
g. KanteEinfuegen ("R", "PA", 72);
g. KanteEinfuegen ("F", "W\u00DC", 131);
// Formatiertes Ausgeben der Adjazenzmatrix in der Konsole // Formatiertes Ausgeben der Adjazenzmatrix in der Konsole
System. out. println ("Matrix"); System. out. println ("Matrix");
@@ -72,6 +68,4 @@ class ARBEIT
System. out. println ("Breitensuche"); System. out. println ("Breitensuche");
g. BreitenSuche ("M"); g. BreitenSuche ("M");
} }
} }

View File

@@ -1,12 +1,12 @@
------------------------------------------------------------------------ ------------------------------------------------------------------------
Testedit:This is the project README file. Here, you should describe your project. Hallo zusammen! 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:
------------------------------------------------------------------------ ------------------------------------------------------------------------
PROJECT TITLE: Breitensuche PROJECT TITLE:
PURPOSE OF PROJECT: Utilize Matrix for Breitensuche PURPOSE OF PROJECT:
VERSION or DATE: 25.04.23 VERSION or DATE:
HOW TO START THIS PROJECT: new Arbeit HOW TO START THIS PROJECT:
AUTHORS: IP AUTHORS:
USER INSTRUCTIONS: / USER INSTRUCTIONS: