Prim-Algorithmus: Unterschied zwischen den Versionen

Aus KGS-Wiki
(Beispiel begonnnen)
(→‎Beispiel: fertig)
Zeile 50: Zeile 50:
linkStyle default stroke:lightgray, fill:none;
linkStyle default stroke:lightgray, fill:none;
}}
}}
|CAPTION=Schritt 1: <math>T</math> ist noch leer.}}
|CAPTION=Vorbereitung: <math>T</math> ist noch leer.
|ALIGN=left}}
 
{{Thumbnailbox|
INHALT={{#mermaid:graph LR
a((A))
b((B))
c((C))
d((D))
e((E))
a -- 3 --- b
a -- 1 --- c
b -- 7 --- c
b -- 5 --- d
b -- 1 --- e
c -- 2 --- d
d -- 7 --- e
style c fill:#00B169;
linkStyle default stroke:lightgray, fill:none;
}}
|CAPTION=Schritt 1: füge <math>C</math> zu <math>T</math> hinzu.
|ALIGN=left}}
 
{{Thumbnailbox|
INHALT={{#mermaid:graph LR
a((A))
b((B))
c((C))
d((D))
e((E))
a -- 3 --- b
a -- 1 --- c
b -- 7 --- c
b -- 5 --- d
b -- 1 --- e
c -- 2 --- d
d -- 7 --- e
style c fill:#00B169;
style a fill:#00B169;
linkStyle default stroke:lightgray, fill:none;
linkStyle 1 stroke:#00B169, fill:none;
}}
|CAPTION=Schritt 2: füge <math>A</math> und <math>\overline{AC}</math> zu <math>T</math> hinzu.
|ALIGN=left}}
 
{{Thumbnailbox|
INHALT={{#mermaid:graph LR
a((A))
b((B))
c((C))
d((D))
e((E))
a -- 3 --- b
a -- 1 --- c
b -- 7 --- c
b -- 5 --- d
b -- 1 --- e
c -- 2 --- d
d -- 7 --- e
style c fill:#00B169;
style a fill:#00B169;
style d fill:#00B169;
linkStyle default stroke:lightgray, fill:none;
linkStyle 1 stroke:#00B169, fill:none;
linkStyle 5 stroke:#00B169, fill:none;
}}
|CAPTION=Schritt 3: füge <math>D</math> und <math>\overline{CD}</math> zu <math>T</math> hinzu.
|ALIGN=left}}
 
{{Thumbnailbox|
INHALT={{#mermaid:graph LR
a((A))
b((B))
c((C))
d((D))
e((E))
a -- 3 --- b
a -- 1 --- c
b -- 7 --- c
b -- 5 --- d
b -- 1 --- e
c -- 2 --- d
d -- 7 --- e
style c fill:#00B169;
style a fill:#00B169;
style d fill:#00B169;
style b fill:#00B169;
linkStyle default stroke:lightgray, fill:none;
linkStyle 1 stroke:#00B169, fill:none;
linkStyle 5 stroke:#00B169, fill:none;
linkStyle 0 stroke:#00B169, fill:none;
}}
|CAPTION=Schritt 4: füge <math>B</math> und <math>\overline{AB}</math> zu <math>T</math> hinzu.
|ALIGN=left}}
 
{{Thumbnailbox|
INHALT={{#mermaid:graph LR
a((A))
b((B))
c((C))
d((D))
e((E))
a -- 3 --- b
a -- 1 --- c
b -- 7 --- c
b -- 5 --- d
b -- 1 --- e
c -- 2 --- d
d -- 7 --- e
style c fill:#00B169;
style a fill:#00B169;
style d fill:#00B169;
style b fill:#00B169;
style e fill:#00B169;
linkStyle default stroke:lightgray, fill:none;
linkStyle 1 stroke:#00B169, fill:none;
linkStyle 5 stroke:#00B169, fill:none;
linkStyle 0 stroke:#00B169, fill:none;
linkStyle 4 stroke:#00B169, fill:none;
}}
|CAPTION=Schritt 5: füge <math>E</math> und <math>\overline{BE}</math> zu <math>T</math> hinzu.
|ALIGN=left}}
}}
}}


{{Lückenhaft}}
Nach Schritt 5 enthält der Baum <math>T</math> alle Knoten und erfüllt damit die Kriterien für einen Spannbaum.


== Weblinks ==
== Weblinks ==

Version vom 30. März 2023, 15:47 Uhr

Ein Beispielgraph

Der Prim-Algorithmus ist ein Algorithmus, der zu einem gegebenen gewichteten Graphen einen minimalen Spannbaum berechnet.

Der Algorithmus wurde 1930 von Vojtěch Jarník entwickelt, 1957 vom namensgebenden Robert Prim und 1959 noch einmal von Edsger Dijkstra wiederentdeckt und funktioniert folgendermaßen:

  1. Wir beginnen mit einem leeren Spannbaum , den wir uns im Folgenden zusammenbasteln.
  2. Wähle zufällig einen Knoten aus dem Graphen und füge ihn zu hinzu.
  3. Solange noch nicht alle Knoten enthält, wiederhole folgende Schritte:
    1. Betrachte alle Kanten, die einen Knoten in mit einem Knoten, der nicht in ist, verbinden.
    2. Wähle von diesen Kanten eine mit dem kleinsten Gewicht
    3. Füge diese Kante und den daran hängenden Knoten, der noch nicht in ist, zu hinzu.

ist dann ein minimaler Spannbaum.

Beispiel

So erzeugt der Prim-Algorithmus aus dem Beispielgraphen einen MST

Nach Schritt 5 enthält der Baum alle Knoten und erfüllt damit die Kriterien für einen Spannbaum.

Weblinks