import javabook.*; class CharNode { public char data; public CharNode next; public CharNode( char theData ) { data = theData; next = null; } }