我的编程空间,编程开发者的网络收藏夹
学习永远不晚

C++链表实现通讯录设计

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

C++链表实现通讯录设计

本文实例为大家分享了C++链表实现通讯录设计的具体代码,供大家参考,具体内容如下

功能如下:

1添加学生信息
2删除学生信息
3显示学生信息
4查询学生信息
5学生信息排序
6清空屏幕信息
7清空文档信息
8退出管理系统

上代码!

#include <iostream>
#include <algorithm>
#include <string>
#include <fstream>//读写文件的头文件
using namespace std;

struct ElementType;
struct Node;
struct Queue;
typedef struct Queue* MyQueue;

struct ElementType {
    int id;
    string name;
    int num;
};

struct Node {
    ElementType data;
    Node* next;
};

struct Queue {
    Node* front;
    Node* rear;
};

MyQueue Init(MyQueue& q);//Initialize queue
bool IsEmpty(MyQueue q);//Determine if the queue is empty
bool Insert(ElementType x, MyQueue q);//Insert the data to the end of the queue
bool Delete(const int message, MyQueue q);//Find some data in the queue, and then delete the corresponding node
void Print(const Node* q);//Prints all the information in a node
void PrintAll(const MyQueue q);//Prints information from all nodes
bool FindByName(const string massage, const MyQueue q);//Prints information from all nodes
void Input(MyQueue q);//When the address book is empty, re-enter the information into the address book 
void Write(MyQueue q);//Write the information from the queue to the document 
MyQueue Read();//Write the information from the queue to the document
MyQueue ReadOrClear(MyQueue& q);//Whether to empty all the information 
void Swap(ElementType& x, ElementType& y);//Swap functions in sort
MyQueue BubbleSort(MyQueue q);//Sort by student ID using bubble sort 
void Menu(MyQueue q);//main menu

//初始化队列 
MyQueue Init(MyQueue& q) {
    q = new Queue();
    if (q == NULL) return NULL;
    q->front = NULL;
    q->rear = NULL;
    return q;
}

//查看队列是否为空 
bool IsEmpty(MyQueue q) {
    return q->front == NULL;
}

//添加信息 
bool Insert(ElementType x, MyQueue q) {
    Node* temp = new Node();
    if (temp == NULL) return false;
    temp->data = x;//这里需要改成需要的内容,最好(必须)改成一个函数的形式,赋值的时候调用函数,打印的时候也调用函数
    temp->next = NULL;
    if (IsEmpty(q)) {
        q->front = temp;
        q->rear = temp;
        return true;
    }
    else {
        q->rear->next = temp;
        q->rear = temp;
        return true;
    }
}

//删除功能 
bool Delete(const int message, MyQueue q) {
    Node* temp = new Node();
    if (temp == NULL) return false;//申请储存空间失败
    bool pd = 0;
    //先是找到这个id再进行删除
    //先判断是不是头节点,若不是再把头节点当首节点进行使用
    if (q->front->data.id == message) {//如果删除头节点
        temp = q->front;
        q->front = q->front->next;
        delete temp;
        temp = NULL;
        pd = 1;
    }
    else if (q->rear->data.id == message) {//如果删除尾节点
        //先找到尾节点的前一个结点
        temp = q->front;
        while (temp->next->data.id != message) temp = temp->next;
        q->rear = temp;
        q->rear->next = NULL;
        pd = 1;
    }
    else {//如果删除中间节点
        temp = q->front;
        while (temp->next != NULL && temp->next->data.id != message) temp = temp->next;
        if (temp->next == NULL) return false;//判断是不是没有找到,没有找到返回false
        Node* mp = new Node();
        mp = temp->next;
        temp->next = temp->next->next;
        delete mp;
        mp = NULL;
        pd = 1;
    }
    if (pd == 1) {
        Write(q);
        cout << "已成功删除该学生信息!" << endl;
        return true;
    }
}

//通过姓名进行查找 
bool FindByName(const string massage, const MyQueue q) {//此函数只有查找功能,没有打印功能,打印功能在另一个函数
    Node* temp = new Node();
    bool pd = 0;
    if (q->front->data.name == massage) {
        temp = q->front;
        Print(temp);
        return true;
    }
    else {
        temp = q->front;
        while (temp->next != NULL && temp->next->data.name != massage) temp = temp->next;
        if (temp->next == NULL) return false;//没有找到这个人的姓名,返回false
        Print(temp->next);
        return true;
    }
}

//单个进行打印 
void Print(const Node* q) {
    cout << "该学生的信息为:" << endl;
    cout << "学号: " << q->data.id << " 姓名:" << q->data.name << " 电话号码:" << q->data.num << endl;
}

//打印全部的学生信息 
void PrintAll(const MyQueue q) {
    cout << "学号";
    for (int i = 0; i < 10; i++) {
        cout << "-";
    }
    cout << "姓名";
    for (int i = 0; i < 10; i++) {
        cout << "-";
    }
    cout << "电话号码" << endl;

    Node* temp;
    temp = q->front;
    while (temp != NULL) {
        cout << " " <<temp->data.id << "          " << temp->data.name << "           " << temp->data.num << endl;
        temp = temp->next;
    }
    //cout << endl;
}

//实现排序的功能函数 
void Swap(ElementType& x, ElementType& y) {
    ElementType temp;
    temp = x;
    x = y;
    y = temp;
}

MyQueue BubbleSort(MyQueue q) {
    if (q->front == NULL || q->front->next == NULL) return NULL;
    for (Node* i = q->front; i->next != NULL; i = i->next) {
        for (Node* j = q->front; j->next != NULL; j = j->next) {
            if (j->data.id > j->next->data.id) {
                Swap(j->data, j->next->data);
            }
        }
    }
    return q;
}

//把全部信息存入到文档中
void Write(MyQueue q) {
    //先根据学号进行排序,再进行存储
    q=BubbleSort(q);
    ofstream writeIt;
    writeIt.open("data.txt");
    if (writeIt.fail()) {
        cout << "该文件没有找到!" << endl;
        cout << "程序已退出!" << endl;
        exit(1);
    }

    Node* temp = new Node();
    if (q!= NULL) {
        temp= q->front;
        while (temp != NULL) {
            writeIt << temp->data.id << " " << temp->data.name << " " << temp->data.num << endl;;
            temp = temp->next;
        }
    }
    writeIt.close();
}

//从文档中读出所有的信息
MyQueue Read() {
    ifstream readIt("data.txt");
    if (readIt.fail()) {
        cout << "该文件没有找到!" << endl;
        cout << "程序已退出!" << endl;
        exit(1);
    }
    int id1;
    string name1;
    int num1;
    MyQueue q=new Queue();
    ElementType x;
    while (!readIt.eof()) {
        readIt >> id1 >> name1 >> num1;
        if (readIt.eof()) break;
        x.id = id1;
        x.name = name1;
        x.num = num1;
        Insert(x, q);
    }
    readIt.close();
    return q;
}

//读入文档中的信息
MyQueue ReadOrClear(MyQueue& q) {
    q=Read();
    return q;
}

//使整个队列置空
void MakeEmpty(MyQueue& q) {
    while (q->front != NULL) {
        Node* temp = new Node();
        temp = q->front;
        q->front = q->front->next;
        delete temp;
    }
}

//主菜单
void Menu(MyQueue q) {
    q=ReadOrClear(q);
    while (1) {
        cout << endl;
        cout << "|--------------------学生通讯录系统---------------------|" << endl;
        cout << "|--------------------1 添加学生信息---------------------|" << endl;
        cout << "|--------------------2 删除学生信息---------------------|" << endl;
        cout << "|--------------------3 显示学生信息---------------------|" << endl;
        cout << "|--------------------4 查询学生信息---------------------|" << endl;
        cout << "|--------------------5 学生信息排序---------------------|" << endl;
        cout << "|--------------------6 清空屏幕信息---------------------|" << endl;
        cout << "|--------------------7 清空文档信息---------------------|" << endl;
        cout << "|--------------------8 退出管理系统---------------------|" << endl;
        cout << "|-------------------------------------------------------|" << endl;
        int n;
        cout << "输入您的选择:" << endl;
        cin >> n;
        switch (n) {
            case 1: {
                ElementType x;
                cout << "请输入该学生的信息:学号 姓名 电话号码" << endl;
                cin >> x.id >> x.name >> x.num;
                Insert(x, q);
                Write(q);
                cout << "已成功添加该学生信息!" << endl;
                break;
            }
            case 2: {
                cout << "请输入该学生的学号:" << endl;
                int num1;
                cin >> num1;
                if (!Delete(num1, q)) {
                    cout << "该系统中不存在该学生!" << endl;
                };
                break;
            }
            case 3: {
                cout << "正在打印全部学生信息中.......请稍等!" << endl;
                cout << "全部学生的信息为:" << endl;
                PrintAll(q);
                break;
            }
            case 4: {
                cout << "请输入该学生的姓名:" << endl;
                string name1;
                cin >> name1;
                if (!FindByName(name1, q)) {
                    cout << "该系统中不存在该学生!" << endl;
                }
                break;
            }
            case 5: {
                cout << "正在根据学生的学号对学生进行排序....." << endl;
                cout << "排完序后,结果为:" << endl;
                BubbleSort(q);
                PrintAll(q);
                break;
            }
            case 6: {
                system("cls");
                break;
            }
            case 7: {
                cout << "请您在三确认是否要清空文档中的全部学生信息!清空请输入“yes”,不清空请输入“no”。" << endl;
                string s;
                cin >> s;
                if (s == "yes") { 
                    //先把队列中的全部节点都delete掉,再进行写入文档中
                    MakeEmpty(q);
                    q = Init(q);
                    Write(q);
                    cout << "已经成功清空文档中的全部学生信息!" << endl;
                }
                break;
            }
            case 8: {
                cout << "退出成功!" << endl;
                exit(0);
            }
            default:
                cout << "输入的选项序号有误,请重新输入!" << endl;
        }
    }
}

int main() {
    MyQueue q;
    q = Init(q);
    Menu(q);
    return 0;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

C++链表实现通讯录设计

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

C语言链表案例学习之通讯录的实现

为了将所学到的链表的知识进行巩固学习,做到学以致用,本文将利用链表制作一个简单的通讯录。文中的示例代码讲解详细,感兴趣的小伙伴可以了解一下
2022-11-13

C++如何实现通讯录管理系统设计

这篇“C++如何实现通讯录管理系统设计”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“C++如何实现通讯录管理系统设计”文章吧
2023-07-02

C语言单链表如何实现通讯录管理系统

这篇文章将为大家详细讲解有关C语言单链表如何实现通讯录管理系统,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。通讯录管理系统保存人的信息有: 名字 name电话 telephone性别 sex年
2023-06-15

C语言静态版通讯录的设计与实现

静态版通讯录是一种简单的通讯录实现方式,通过定义固定的数组大小来存储联系人信息。该方法不支持动态增删联系人,但具有实现简单、易于理解的优点。在程序设计中,需注意数组边界溢出等问题
2023-05-16

C++如何使用链表存储实现通讯录功能管理

本文小编为大家详细介绍“C++如何使用链表存储实现通讯录功能管理”,内容详细,步骤清晰,细节处理妥当,希望这篇“C++如何使用链表存储实现通讯录功能管理”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。代码详情头文件
2023-07-02

C++实现通用双向链表

使用C++完成双向通用链表双向链表不用多说,通用链表因为数据结构不确定的,使用一个VOID指针指向数据,什么数据都可以挂上去,这样来封装链表,可以作为基础类也可以单独使用,这里只是为了练习C++封装的语法,实现了简单的增加和删除链表由于实际
2023-06-04

C++如何实现通讯录功能

这篇文章主要介绍“C++如何实现通讯录功能”,在日常操作中,相信很多人在C++如何实现通讯录功能问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”C++如何实现通讯录功能”的疑惑有所帮助!接下来,请跟着小编一起来
2023-07-02

C++如何实现通讯录系统

本篇内容介绍了“C++如何实现通讯录系统”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!制作一个具有添加联系人、删除联系人、修改联系人等功能的
2023-07-02

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录