Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/Java/Threema/     Datei vom 25.3.2026 mit Größe 292 B image not shown  

SSL Tree.thy

  Sprache: Isabelle
 

(*<*)
theory Tree imports Main begin
(*>*)

text\noindent
  the datatype of \rmindex{binary trees}:
 


datatype 'a tree = Tip | Node "'a tree" 'a "'a tree"(*<*)

primrec mirror :: "'a tree 'a tree" where
"mirror Tip = Tip" |
"mirror (Node l x r) = Node (mirror r) x (mirror l)"(*>*)

text\noindent
  a function termmirror that mirrors a binary tree
  swapping subtrees recursively. Prove
 


lemma mirror_mirror: "mirror(mirror t) = t"
(*<*)
apply(induct_tac t)
by(auto)

primrec flatten :: "'a tree => 'a list" where
"flatten Tip = []" |
"flatten (Node l x r) = flatten l @ [x] @ flatten r"
(*>*)

text\noindent
  a function termflatten that flattens a tree into a list
  traversing it in infix order. Prove
 


lemma "flatten(mirror t) = rev(flatten t)"
(*<*)
apply(induct_tac t)
by(auto)

end
(*>*)

Messung V0.5 in Prozent
C=55 H=97 G=78

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-08-25) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.