コード例 #1
0
 public ID3Node()
 {
     Data      = new ID3Data();
     Neighbors = null;
 }
コード例 #2
0
 public Likleshoodtable(string filename)
 {
     data = new ID3Data();
     data.Readdata(filename);
     table = new Dictionary <string, Dictionary <string, double[]> >();
 }
コード例 #3
0
 public ID3Tree(string filename)
 {
     Data = new ID3Data();
     Data.Readdata(filename);
 }