uccser/cs-field-guide

View on GitHub
csfieldguide/static/img/chapters/huffman-tree-dice.txt

Summary

Maintainability
Test Coverage
Dot notation for image, created with viz-js.com

digraph G {
  graph [ranksep=0,bgcolor=transparent];
  node [shape=Mrecord];
  start [label="start"];
  0 [label=""];
  00 [label="⚀",fontsize=30];
  01 [label=""];
  010 [label="⚁",fontsize=30];
  011 [label="⚂",fontsize=30];
  1 [label=""];
  10 [label=""];
  100 [label="⚃",fontsize=30];
  101 [label="⚄",fontsize=30];
  11 [label="⚅",fontsize=30];
  start -> 0 [label="0"];
  start -> 1 [label="1"];
  0 -> 00 [label="0"];
  0 -> 01 [label="1"];
  01 -> 010 [label="0"];
  01 -> 011 [label="1"];
  1 -> 10 [label="0"];
  10 -> 100 [label="0"];
  10 -> 101 [label="1"];
  1 -> 11 [label="1"];
}