template <typename T>
void fillingTable(T ***table, int row, int column, int defaultValue = STATE_NULL){
*table = new T*[row];
for (int r = ; r < row; r++){
(*table)[r] = new T[column];
for (int c = ; c < column; c++){
(*table)[r][c] = defaultValue;
}
}
}