欢迎来到天天文库
浏览记录
ID:50176348
大小:64.50 KB
页数:7页
时间:2020-03-06
《面向对象技术C++平时作业.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、平时作业共2次平时作业(1)定义、实现并测试表示由整型数元素组成的集合类型IntSet。需提供的操作至少应包括:l构造函数l析构函数l拷贝构造函数l插入元素l删除元素l清空集合l集合并l集合交l集合差l集合显示输出集合显示输出的格式为{元素1,元素2,…},空集的输出为{}。/*intset.h*/#ifndefINTSET_H#defineINTSET_HclassIntSet{intcursize,maxsize;int*x;boolmember(intt)const;public:IntSet(intm
2、=100);//l构造函数IntSet(constIntSet&);//l拷贝构造函数~IntSet();//l析构函数voidinsert(intt);//l插入元素voidremove(intt);//l删除元素voidclear();//l清空集合voidprint();//l集合显示输出IntSetsetunion(constIntSet&);//l集合并IntSetsetdifference(constIntSet&);//l集合差IntSetsetintsection(constIntSet&);
3、//l集合交};#endif/*intset.cpp*/#include"stdafx.h"#include#includeusingnamespacestd;#include"intset.h"IntSet::IntSet(intm){if(m<1)exit(1);cursize=0;x=newint[maxsize=m];}IntSet::~IntSet(){deletex;}IntSet::IntSet(constIntSet&m){cursize=m.cursiz
4、e;x=newint[maxsize=m.maxsize];for(inti=0;ix[m])l=m+1;elsereturntrue;}returnfalse;}voidIntSet::insert(intt){if(member(t)){return
5、;}if(cursize>=maxsize){exit(1);}x[cursize++]=t;for(inti=cursize-1;i>0;i--){if(x[i]6、该集合中不存在"<7、"{";if(cursize>0){for(inti=0;i8、onstIntSet&anotherset){IntSetr=anotherset;for(inti=0;i
6、该集合中不存在"<7、"{";if(cursize>0){for(inti=0;i8、onstIntSet&anotherset){IntSetr=anotherset;for(inti=0;i
7、"{";if(cursize>0){for(inti=0;i8、onstIntSet&anotherset){IntSetr=anotherset;for(inti=0;i
8、onstIntSet&anotherset){IntSetr=anotherset;for(inti=0;i
此文档下载收益归作者所有