博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
#C++PrimerPlus# Chapter10_Exersice8_v1.0
阅读量:4882 次
发布时间:2019-06-11

本文共 1801 字,大约阅读时间需要 6 分钟。

题意似乎有点难理解,题面提及的链表似乎之前也没介绍过。

从简单做起,定义一个类List:

私有部分:元素数为5的bool类型的数组,false代表列表空,true代表列表满。

       一个计数器,int变量,记录多少个列表项为满。

公有部分:初始化函数,初始空列表。

     添加修改某列表项的函数,以列表项编号为参数。

     访问某编号列表项,返回它的值。(内联)

     检验列表是否为空或满的函数。

     显示整个列表的函数。

程序清单如下:


 

// list.h

#ifndef LIST_H_
#define LIST_H_
// 此处修改列表的数据类型
typedef bool Item;
class List
{
private:
    enum {SIZE = 5};
    Item lists[SIZE];
    int count;
public:
    List();
    void setList(int num);
    const Item& visitList(int num) const {return lists[num-1];}
    bool ifEmpty(void) const;
    bool ifFull(void) const;
    void showLists(void) const;
};
#endif


// list.cpp

#include <iostream>
#include "list.h"
List::List()
{
    for (int i = 0; i < SIZE; i++)
        lists[i] = false;
    count = 0;
}
// 此处修改列表对应数据类型的输入方法
void List::setList(int num)
{
    using std::cout;
    using std::cin;
    cout << "请输入您想要添加进列表项" << num << "的值:";
    if (lists[num-1] != 0)
        count--;
    while (!(cin >> lists[num-1]))
    {
        cin.clear();
        while (cin.get() != '\n')
            continue;
        cout << "输入错误,请重新输入。\n";
    }
    while (cin.get() != '\n')
        continue;
    if (lists[num-1] != 0)
        count++;
}
bool List::ifEmpty(void) const
{
    return count == 0;
}
bool List::ifFull(void) const
{
    return count == 5;
}
// 此处修改列表对应数据类型的输出方法
void List::showLists(void) const
{
    std::cout << "列表状态为:";
    for (int i = 0; i < SIZE; i++)
        std::cout << lists[i];
    std::cout << std::endl;
}


 // uselist.cpp

#include <iostream>
#include "list.h"
int main()
{
    using std::cout;
    using std::cin;
    List newList;
    newList.showLists();
    int listNum;
    cout << "请输入您要修改的列表项编号(1-5),其他任意值退出程序:";
    while (cin >> listNum)
    {
        while (cin.get() != '\n')
            continue;
        newList.setList(listNum);
        newList.showLists();
        if (newList.ifFull())
            cout << "列表已满。\n";
        if (newList.ifEmpty())
            cout << "列表已清空。\n";
        cout << "请输入您要修改的列表项编号(1-5),其他任意值退出程序:";
    }
 
    return 0;
}


结束。

转载于:https://www.cnblogs.com/zhuangdong/archive/2013/04/27/3044141.html

你可能感兴趣的文章
D.xml
查看>>
跨域名设置cookie或获取cookie
查看>>
对于补码的理解
查看>>
欧拉函数技巧与学习笔记
查看>>
shell-变量,字符串,数组,注释,参数传递
查看>>
matlab中imresize
查看>>
转载: php session_set_save_handler 函数的用法(mysql)
查看>>
检测浏览网站的是否是蜘蛛
查看>>
我遇到的jsp 传递参数 出现乱码的情况(项目统一编码utf-8)
查看>>
免安装版TOMCAT配置及问题解决方法
查看>>
SharePoint管理中心配置内容数据库
查看>>
P2P网贷中的4种理財业务模式
查看>>
flume原理
查看>>
【转载】C#防SQL注入过滤危险字符信息
查看>>
一:两数之和
查看>>
Innodb中的事务隔离级别和锁的关系
查看>>
CentOS 7 删除 virbr0 虚拟网卡
查看>>
linux下保护视力、定时强制锁定软件: Workrave
查看>>
使用shell脚本自动化对硬盘进行分区
查看>>
Linux-重装系统之phpmyadmin安装
查看>>