#include #include #include #include using namespace::std; #ifndef KGRAMSTATS_H #define KGRAMSTATS_H typedef list kgram; class kgramstats { public: kgramstats(string corpus, int maxK); map* lookupExts(kgram tk); int getMaxK(); vector randomSentence(int n); private: int maxK; map* >* stats; }; void printKgram(kgram k); #endif