程序设计及算法语言C卷
《程序设计及算法语言C卷》由会员分享,可在线阅读,更多相关《程序设计及算法语言C卷(11页珍藏版)》请在装配图网上搜索。
1、东 南 大 学 考 试 卷(C卷) 学号 姓名 密 封 线 课程名称 程序设计及算法语言 考试学期 07-08-2 得分 适用专业 吴健雄学院 考试形式 闭卷 考试时间长度 120分钟 卷面总分60,另有上机编程30分,平时成绩10分 一、简答题(共3分) 自 觉 遵 守 考 场 纪 律 如 考 试 作 弊 此 答 卷 无 效 下列各段程序都存在错误,请说明错误所在及理由 (1)类说明(1分) class Circle{ reg
2、ister int atom_x,atom_y; auto int radius; public: Circle(int x=0,int y=0,int radius=3); ~ Circle(); }; 答: (2) 类说明(1分) class Figure{ public: Figure(); ~ Figure(bool have_drawn); virtual int darw()=0; }; 答:
3、
(3)使用一个函数来交换两个数据(1分)
void swap(double d1,double d2){
double temp ;
temp=d1 ; d1=d2 ; d2=temp ;
}
int main(void){
double x , y ;
cout<<"请输入x和y的值"<<'\n';
cin>>x>>y ;
swap(x,y) ;
cout<<"x="< 4、 return 0;
}
答:
二、程序阅读与修改题(第1题3分,其他每题5分,共18分)
1.下例演示C++的异常处理功能。请给出程序输出结果。
class ZeroExcep{
string message;
public:
ZeroExcep():message("被0除异常"){}
string what(){return message;}
};
double divide(double num1,doub 5、le num2){
if(num2==0) throw ZeroExcep();
return num1/num2;
}
int main(){
try{
cout<<"5.0/2.0="< 6、下面的程序的输出,删去Person类show()前的virtual,输出又是如何?
class Person{
protected:
string name;
public:
Person(string Name="#"){name=Name;}
virtual void show(){
cout<<"我的名字是:"< 7、No=num;}
void show(){
cout<<"我的学号是:"< 8、
删去virtual后程序输出:
};
int main(){
Person *pp,ps;
pp=&ps;pp->show();
student st("沈洁","06007126");
pp=&st;pp->show();
teacher tc("陈棣","计算机");
pp=&tc;pp->show();
return 0;
}
3.阅读下列模拟售瓜程序,给出
运行的输出结果。
class watermelon{
double weight;
static double total_weight;
static int tota 9、l_number;
public:
watermelon(double wt){ //模拟售瓜
weight=wt;
total_weight+=weight;
total_number++;
}
returnwatermelon(){ //模拟退瓜
total_weight-=weight;
total_number--;
total_show();
}
void show(){
cout<<"The watermelon weight is:"< 10、{
cout<<"Total weight is:"< 11、al_show();
wm1.returnwatermelon();
return 0;
}
4.下列程序为线性表插入一个新元素,请给将插入前后数组中元素按顺序写出,并指出Insert()函数代码错在哪里?给出正确代码。
template 12、 int last; //已存表项的最后位置
public:
seqlist(){last=-1;Maxsize=size;} //初始化为空表
bool Insert(T & x,int i); //x插入到列表中第i个位置处(下标)
T Get(int i){return i<0||i>last?NULL:slist[i];} //取第i个元素之值
//其他成员函数略
};
templa 13、te 14、nt,100> seqlisti; //顺序表对象seqlisti的元素为整型
int i,j,k,a[10]={2,3,5,11,13,17,19,23,29};
for(j=0;j<9;j++) seqlisti.Insert(a[j],j) //把素数写入
for(i=0;i<9;i++) cout< 15、+) cout< 16、){re=a;im=b;}
Complex operator +(Complex &);
(1) ; //重载= =的声明,参见其定义
friend ofstream &operator <<(ofstream &,Complex &) ;
friend ifstream &operator >>(ifstream &,Complex &);
(2) ; //由复数到实数的类型强制转换函数double(),即求模 17、
Complex operator ++(); //前置++,实部虚部各+1
(3) ; //后置++
};
(4) { //重载+运算符
Complex t;
t.re=re+c.re;
t.im=im+c.im;
return t;
}
bool operator = =(Complex &c1,Complex &c2){
if((5 18、) ) return true; //实部与虚部各自相等
else return false;
}
(6) { //重载插入运算符<<
if(c.re){ //实部不为0
out< 19、se out< 20、ex::operator ++(int){ //后++
Complex t=(9) ; //保存对象自身
re++;im++;
return t;
}
Complex::operator double(){//由复数到实数的类型强制转换函数double(),即求模
return (sqrt(re*re+im*im));
}
2.以下是一个链表类模板的应用程序,链表的节点为结构体,包含一个数据域和一个指针域,其中数据域的类型参数化。链表类的数据成员为指向节点的指针。各函数成员功能参见注释行。该链表为空链表的标志是头指针和尾 21、指针同指向一个头节点(链表有效数据从该节点的下一个节点开始)。请完成程序空缺部分。
template 22、y(); //清空链表,只余头结点
Node 23、emplate 24、P;
while(head->link!=NULL){
tempP=head->link;
head->link=(11) ; //把头结点后的第一个节点从链中脱离
delete tempP; //删除(释放)脱离下来的结点
}
tail=head; //表头指针与表尾指针均指向表头结点,表示空链
}
template 25、 &&(13) )
//数未找到同时链表未搜完则继续搜索
tempP=tempP->link;
return tempP; //搜索成功返回该结点地址,不成功返回NULL
}
template 26、endl;
}
template 27、
(16) ; //指针域不能悬浮
return tempP;
}
template 28、续向后找。
if(tempP->link==tail) tail= (18) ; //p节点是尾节点,修改尾指针
tempP->link=p->link; //将p节点从链表中脱离
delete p; //释放p节点空间
return temp;
}
int main(){
Node 29、>>m; //输入节点数据
P1=(19) ; //创建孤立节点
list1.InsertRear(P1); //正向生成list1
}
list1.PrintList();
cout<<"请输入一个要求删除的整数"< 30、
list1.PrintList();
}
else cout<<"无该数据节点"< 31、 //存放顺序表的数组
int Maxsize; //最大可容纳项数
int last; //已存表项的最后位置
public:
seqlist(int ms=18);
~seqlist(){delete[] elements;}
T& operator[](int); //重载下标运算符[]
int Josephus(i 32、nt,int);
};
template 33、out<<"下标出界!"< 34、st;
while(k!=0){
while(j
- 温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。