网站首页 资讯 正文
请实现一个队列,既可以存放整数,又可以存放字符串。简单的说,队列是一种数据结构,按照先进先出的顺序管理进、出队列的元素。本题要求完成:
(1) 实现描述队列的类Queue,其中定义了队列的大小Size(即队列中可以存放的元素个数),并包括进队列函数Add,出队列函数Delete、显示队列头部元素的函数Head和显示队列尾部元素的函数Tail.
(2) 定义基类Element,至少包含纯虚函数ShowMe.
(3) 从基类Element中派生整数类MyInteger和字符串类MyString, 具体实现上述纯虚函数ShowMe,显示该元素的类型和相应的值。
(4) 重载输入“>>”*作符,使得可以通过cin直接读入上述整数类和字符串类的对象值。
(5) 编写main函数,测试上述所要求的各种功能,即可以根据菜单命令增加队列元素、删除队列元素、显示队列头部元素和队列尾部元素,其中的元素可以是整数和/或字符串。
提示:
虚拟基类Element的定义至少包括以下纯虚函数ShowMe.
class Element
{
// ……
public:
virtual void ShowMe () = 0;
// ……
};
*/
#include "stdafx.h"
#include "iostream.h"
#include "string.h"
const max=1000;
#define NULL 0
class Element
{ public:
virtual void ShowMe () = 0;
};
class MyInteger:public Element
{int a;
public:
MyInteger()
friend istream &operator>>(istream &is, MyInteger &MyI);
int Get(){return a;};
void ShowMe()
};
istream &operator>>(istream &is, MyInteger &MyI)
{
cout<<" 请输入整数:";
is>>MyI.a;
return is; }
class MyString:public Element
{char s[100];
public:
friend istream &operator>>(istream &is, MyString &MyS);
void ShowMe()
};
istream &operator>>(istream &is, MyString &MyS)
{
cout<<" 请输入字符串:";
is>>MyS.s;
return is;
}
class Queue
{int size;
Element *Elm[max];
MyInteger MyI[max];
MyString MyS[max];
public:
Queue(){
for (int i=0; i<max; i++)
Elm[i]=NULL;
size=-1;
}
void add(MyInteger &My)
{
if (full()) cout<<"队列已满"<<endl;
else {
MyI[++size]=My;
Elm[size]=new MyInteger;
Elm[size]=&MyI[size];
}
}
void add(MyString &My)
{
if (full()) cout<<"队列已满"<<endl;
else {
MyS[++size]=My;
Elm[size]=new MyString;
Elm[size]=&MyS[size];
}
}
void tail()
{if(empty()) cout<<"队列为空"<<endl;
else{
cout<<" 队列的尾元素为";
Elm[size]->ShowMe();
}
}
void head()
{
if(empty()) cout<<"队列为空"<<endl;
else{
cout<<" 队列的头元素为";
Elm[0]->ShowMe();
}
}
void del()
{
if(empty()) cout<<"队列为空"<<endl;
else{
cout<<" 出队列的元素为";
Elm[size--]->ShowMe();
}
}
bool empty()
{
return (bool)(size==-1);
}
bool full()
{
return (bool)(size==max-1);
}
};
void main()
{MyInteger my1;
MyString my2;
Queue queue;
int s=1;
while(s)
{
cout<<"Please select 1-6 "<<endl;
cout<<" 1: 整数进队列;"<<endl;
cout<<" 2: 字符串进队列;"<<endl;
cout<<" 3: 显示队列头元素;"<<endl;
cout<<" 4: 显示队列尾元素"<<endl;
cout<<" 5: 出队列;"<<endl;
cout<<" 6: 退出程序"<<endl;
cout<<"--------------------------------------"<<endl;
cout<<"请选择您的*作:";
cin>>s;
switch(s)
{
case 1: cin>>my1; queue.add(my1); break;
case 2: cin>>my2; queue.add(my2); break;
case 3: queue.head(); break;
case 4: queue.tail(); break;
case 5: queue.del(); break;
default: s=0; break;
}
}
}
猜你喜欢
- 2021-12-25 2006年最热门的十大职业-自考就业
- 2021-12-25 职场冬天里的一把火-自考就业
- 2021-12-25 2006职场人最关心的是什么?-自考就业
- 2021-12-25 2007十个令人兴奋的岗位-自考就业
- 2021-12-25 2006年“新”职业大盘点-自考就业
- 2021-12-25 我国“高技能人才”严重匮乏-自考就业
- 2021-12-25 印度要培养大量汉语人才-自考就业
- 2021-12-25 我国急需培养财务策划专业人员-自考就业
- 2021-12-25 动态网站设计师成为职场新热门-自考就业
- 2021-12-25 研究生就业:超三成人认为工作难找-自考就业
你 发表评论:
欢迎- 01-202022年4月(22.1次)四川省高等教育自学考试报名时间公布
- 12-262020西南交通大学网络教育学院排名
- 12-26西南交通大学网络教育学院网站网址
- 12-26西南交通大学网络教育学院招生办联系电话
- 12-26西南交通大学网络教育学院2020年招生简章
- 12-26西南交通大学网络教育学院宿舍条件
- 12-26西南交通大学网络教育学院想法
- 12-26西南交通大学网络教育学院2020年招生录取分数线
- 5038℃“实验心理学”听课笔记-学习笔记
- 4329℃自考现代汉语语法复习资料四-学习笔记
- 3803℃“实验心理学”听课笔记(2006年版)-学习笔记
- 3557℃语言学概论自考复习题第三章-学习笔记
- 3088℃《大学语文(专)》课程完整讲义-学习笔记
- 2704℃四川大学网络教育学院网站网址
- 2544℃远程教育有几大类型
- 2267℃网络教育可以同时报读2个专业吗
- 0℃未命名
本文暂时没有评论,来添加一个吧(●'◡'●)