2007年6月29日

摘要: //工程名:SeqList//文件名:SeqList.h//功能:演示循序表的基本操作//依赖文件:SeqList.cpp,main.cpp#ifndefSeqList_H#defineSeqList_HconstintMaxSize=100;template<classT>classSeqList...{public:SeqList()...{length=0;}SeqList(Ta[],intn);voidInsert(inti,Tx);TDelete(inti);intLocate(Tx);voidPrintList();private:Tdata[MaxSize];intl 阅读全文

posted @ 2007-06-29 15:22 xublogs 阅读(283) 评论(0) 推荐(0)