/*
 *
 *	Author:		Jeff Baron
 *
 *	Date:		10/11/02
 *
 *	Purpose:	Design classes to manipulate one and two dimensional arrays
 *
 *			1) Convert one d arrays to two d arrays
 *				a)Need to make a list into a table with either 
 *				dimensions taken and validated at run time, or 
 *				calculated at run time.
 *
 *				b)Possible command line arguments taken after 
 *				getting the initial program working
 *
 *			2) Convert two d arrays to one d arrays
 *
 *			3) Print array
 *				a)if one d, just print a list
 *				b)if two d print a table
 *
 *			4) Save arrays to a text file
 *
 *			5) Possibly work into a simple database. Experiment with 
 *			parsing and regular expression searching later on.
 *
 *			Design a simple class to dynamically fill and empty array for 
 *			testing purposes
 *
 */

////////////////////////////////////////////////////////////////////////////////////////
////////What proceeds for now is just sketch coding, nothing is final, and most/////////
////////will likely blow your computer up. Mainly, leave the code alone/////////////////
////////Most of this code will not be in class form, I am still working the/////////////
////////infastructure to implament my plans.////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////

#include <iostream>
#include <iomanip>
#include <time.h>	//using to generate a random seed to fill array
#include <stdlib.h>
#include <math.h>
using namespace std;


