Du befindest dich hier: FSI Informatik » Prüfungsfragen und Altklausuren » Prüfungen im Bachelor-Studium (1. - 5. Semester) » aud » Forendiskussionen

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige ÜberarbeitungVorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
Nächste ÜberarbeitungBeide Seiten, nächste Überarbeitung
pruefungen:bachelor:aud:loesung-miniklausur-15 [29.03.2016 09:34] – ADT hinzugefügt Marcel[Inf]pruefungen:bachelor:aud:loesung-miniklausur-15 [09.01.2018 11:09] Zulleyy3
Zeile 36: Zeile 36:
 isBlack(flip(cv, x1, y1), x2, y2) = isBlack(flip(cv, x1, y1), x2, y2) =
     !isBlack(cv, x2, y2)    falls x1=x2 && y1=y2     !isBlack(cv, x2, y2)    falls x1=x2 && y1=y2
-    isBlack(cv, x2, y2)     sonst+    isBlack(cv, x2, y2)      sonst
  
 bottom(new) = 0 bottom(new) = 0
 bottom(flip(cv, x1, y1)) = bottom(flip(cv, x1, y1)) =
     y1               falls y1 < bottom(cv) && !isBlack(cv, x1, y1)     y1               falls y1 < bottom(cv) && !isBlack(cv, x1, y1)
-    bottom(cv)   sonst+    bottom(cv)       sonst
 </code> </code>