Difference between revisions of "RAM Sorting"

From FreekiWiki
Jump to navigation Jump to search
(added multinotch)
(getting closer)
Line 1: Line 1:
 
<graphviz>
 
<graphviz>
 
digraph D {
 
digraph D {
laptopsodimm     [label="Is it 2.75 inches long?", fontsize="11"]
+
start        [label="START HERE", fontsize="11", shape="box", style="bold"]
dimm    [label="Is it 5.25 inches long?", fontsize="11"]
+
short     [label="Is it 2.75 inches long?", fontsize="11"]
 +
long    [label="Is it 5.25 inches long?", fontsize="11"]
 
multinotch    [label="Does it have more than one notch?", fontsize="11"]
 
multinotch    [label="Does it have more than one notch?", fontsize="11"]
  
laptopsodimm -> dimm [label="NO"]
+
start -> short
dimm -> multinotch [label="YES"]
+
short -> long [label="NO"]
}
+
long -> multinotch [label="YES"]
 +
 
 
</graphviz>
 
</graphviz>
 +
 +
}[[Category: Prebuild]]

Revision as of 17:53, 3 September 2008

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

}