#include #include #include #include "list.h" using namespace std; int main () { List L; ifstream infile; string word; infile.open("charge.fixed.txt"); while(infile) { infile >> word; if (!L.IsPresent(word)) { if (!L.IsFull()) { cerr << "Inserting " << word << endl; L.Insert(word); } else { cerr << "Should insert " << word << " but there is no space " <