File:Trie.svg

Summary

Description
Deutsch: Bild eines Tries, der die Zeichenketten Java, Rad, Rand, Rau, Raum und Rose speichert.
Date 18 March 2004, überarbeitet am 18. Juni 2004
Source Own work
Author nd
SVG development
InfoField
 
The SVG code is valid.
 
This diagram was created with Graphviz.
Category:Valid SVG created with Graphviz:Diagrams#Trie.svg
 
Category:Translation possible - SVGThis diagram uses embedded text that can be easily translated using a text editor.

Licensing

I, the copyright holder of this work, hereby publish it under the following licenses:
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.
Category:License migration redundant#Trie.svgCategory:GFDL#Trie.svg
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
This licensing tag was added to this file as part of the GFDL licensing update.
Category:CC-BY-SA-3.0-migrated#Trie.svg
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 2.5 Generic, 2.0 Generic and 1.0 Generic license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-2.5,2.0,1.0#Trie.svg
You may select the license of your choice.
Category:Self-published work

Graphviz source

Deutsch: Dieser Quelltext ist für Graphviz
digraph Trie {
   
   // normal nodes
   node [
     shape = circle
     width = 0.65
     fixedsize = true
   ]; "" J Ja Jav R Ra Ran Ro Ros;
   
   // full word nodes
   node [
     shape = doublecircle
   ]; Java Rad Rand Rau Raum Rose;   
  
   "" -> J [ label = " J" ];
   "" -> R [ label = " R" ];

   J -> Ja [ label = " a" ];
   Ja -> Jav [ label = "v"];   
   Jav -> Java [ label = " a"];

   R -> Ra [ label = "  a" ];   

   Ra -> Rad [ label = " d" ];

   Ra -> Ran [ label = "  n" ];
   Ran -> Rand [ label = "  d" ];

   Ra -> Rau [ label = "  u" ];
   Rau -> Raum [ label = "  m" ];

   R -> Ro [ label = " o" ];
   Ro -> Ros [ label = "  s" ];
   Ros -> Rose [ label = "   e" ];

   // invisible nodes for alignment (recommended by FAQ)
   node [
     label = "."
     width = .6
     style = invis
   ]; 
 
   edge [
     style = invis
   ]

   Ja -> Rad;
   Rad -> Java;

   "" -> foo;
   R -> foo;
   J -> foo;
 }
Category:Images with Graphviz source code Category:Trie
Category:CC-BY-SA-2.5,2.0,1.0 Category:CC-BY-SA-3.0-migrated Category:GFDL Category:Images with Graphviz source code Category:License migration redundant Category:Pages using deprecated source tags Category:Self-published work Category:Translation possible - SVG Category:Trie Category:Valid SVG created with Graphviz:Diagrams