Example #1
0
 public node(char CharInput)
 {
     CharX = CharInput;
     next  = null;
 }
Example #2
0
 public NodeList()
 {
     list = null;
 }