Use Win Zip to zip up files for assignment #2
Use ws_ftp to transfer as2.zip to husky1
PASSIN as2.zip by connecting to husky1 using telnet (QVT)

Lab assignment:

-	Get binary.cpp, binary.h, btnode2.h from chapter8
	and all the associated files such as xcept.h
-	Use your own queue created from doubly linked list
	IF YOU CANNOT FIND YOUR QUEUE, WRITE IT AS FOLLOWS:

template <class T>
class DoubleQueue : Double<T>
{
	public:
	DoubleQueue() : Double<T>() {}
	bool IsEmpty(){ return Double<T>::IsEmpty();}
	bool IsFull() {return false;}
	T First(){ T x; Double<T>::Find(1,x); return x;}
	T Last() {
		// Write it yourself
		}
	DoubleQueue<T>& Add(const T& x){
		Double<T>::Insert(Length(),x); return *this;
		}
	DoubleQueue<T>& Delete(T& x){
		//write it yourself
		}
};

-	NOTE: replace lqueue.h with dqueue.h
	LinkedQueue in function LevelOrder will be replaced by DoubleQueue

-	Rewrite Size() based on notes from LEC13.RTF
	Get rid of the global variable _count

-	Make sure that binary.cpp compiles and executes
