Can a struct contain an array of unknown size until runtime...
struct TransType //box for holding transition function data{char symbol; //input symbol read at current statestd::vector<int> goesTo; //list of states to go to if given symbol is readvoid resize(size_t states){goesTo.resize(states);...