C++实现通讯录小功能

 更新时间:2022年06月20日 14:08:02   作者:糯米团子鸭  
这篇文章主要为大家详细介绍了C++实现通讯录小功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

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

思路:

1.显示菜单栏

void menu() {
 
    cout << "——————————————————" << endl;
    cout << "*********** 1.添加联系人 ***********" << endl;
    cout << "*********** 2.删除联系人 ***********" << endl;
    cout << "*********** 3.修改联系人 ***********" << endl;
    cout << "*********** 4.查找联系人 ***********" << endl;
    cout << "*********** 5.显示通讯录 ***********" << endl;
    cout << "*********** 6.清空联系人 ***********" << endl;
    cout << "*********** 0.退出通讯录 ***********" << endl;
    cout << "——————————————————" << endl;
}

2.退出

int main() {
 
    int select = 0;
    cin >> select;
    switch (select) {
        
        case 0://退出通讯录
            cout << "欢迎下次使用" << endl;
            system("pause");
            return 0;
            break;
        
    }
    
    system("pause");
    return 0;
}

3.创建结构体

3.1创建联系人结构体
3.2创建通讯录结构体

//定义联系人结构体
//姓名、电话号码、邮箱、地址
struct person {
    string name;
    string number;
    string Email;
    string address;
};
// 定义通讯录结构体
struct contacts {
    int people_num;
    struct person personarr[MAX];//子结构体:联系人信息
};

4.添加联系人

void addperson(struct contacts* p) {
    if (p->people_num == MAX ) {
        cout << "通讯录已满" << endl;
    }
    else {//添加联系人信息
        string name, number, Email, address;
        cout << "请输入姓名:" << endl;
        cin >> name;
        cout << "请输入电话:" << endl;
        cin >> number;
        cout << "请输入邮箱:" << endl;
        cin >> Email;
        cout << "请输入地址:" << endl;
        cin >> address;
        p->personarr[p->people_num].name = name;
        p->personarr[p->people_num].number = number;
        p->personarr[p->people_num].Email = Email;
        p->personarr[p->people_num].address = address;
        
        p->people_num++;
        cout << "添加成功!" << endl;
    }
}

5.删除联系人

判断联系人是否存在

int existperson(struct contacts* p,string name) {
    
    for (int i = 0; i < p->people_num; i++) {
        if ( p->personarr[i].name == name ) {
            return i;
        }
    }
    return -1;
}

若存在,获取联系人在通讯录位置,将position后面的都往前移动一个位置,覆盖之前的值

//删除联系人
void delperson(struct contacts* p,int position) {
    while (position < (p->people_num)) {
        p->personarr[position] = p->personarr[position + 1];
        position++;
    }
    p->people_num--;
    cout << "删除成功!" << endl;
}

6.修改

检查要修改联系人是否存在,并获取当前位置

void modifyperson(struct contacts* p, int position) {
    string  number, Email, address;
    
    cout << "请输入修改电话:" << endl;
    cin >> number;
    cout << "请输入修改邮箱:" << endl;
    cin >> Email;
    cout << "请输入修改地址:" << endl;
    cin >> address;
 
    p->personarr[position].number = number;
    p->personarr[position].Email = Email;
    p->personarr[position].address = address;
    cout << "修改成功!" << endl;
}

7.查找

void searchperson(struct contacts* p, int position) {
    cout << "姓名:" << p->personarr[position].name << "    "
        << "电话:" << p->personarr[position].number << "    "
        << "邮箱:" << p->personarr[position].Email << "    "
        << "地址:" << p->personarr[position].address << "    ";
}

8.显示通讯录

void showcontact(struct contacts* p) {
    for (int i = 0; i < (p->people_num); i++) {
        cout <<"姓名:" << p->personarr[i].name << "    "
            <<"电话:" << p->personarr[i].number << "    "
            <<"邮箱:" << p->personarr[i].Email << "    "
            <<"地址:" << p->personarr[i].address << "    "<< endl;
 
    }        
}

9.清空通讯录

void cleancontact(struct contacts* p) {
    p->people_num = 0;
    cout << "已清空!" << endl;
}

全部代码

#include<iostream>
using namespace std;
#define MAX 200 
 
//1.菜单栏显示
void menu() {
 
    cout << "——————————————————" << endl;
    cout << "*********** 1.添加联系人 ***********" << endl;
    cout << "*********** 2.删除联系人 ***********" << endl;
    cout << "*********** 3.修改联系人 ***********" << endl;
    cout << "*********** 4.查找联系人 ***********" << endl;
    cout << "*********** 5.显示通讯录 ***********" << endl;
    cout << "*********** 6.清空联系人 ***********" << endl;
    cout << "*********** 0.退出通讯录 ***********" << endl;
    cout << "——————————————————" << endl;
}
 
//2.定义结构体
//2.1定义联系人结构体
//姓名、电话号码、邮箱、地址
struct person {
    string name;
    string number;
    string Email;
    string address;
};
//2.2 定义通讯录结构体
struct contacts {
    int people_num;
    struct person personarr[MAX];//子结构体:联系人信息
};
 
//3.添加联系人
void addperson(struct contacts* p) {
    if (p->people_num == MAX ) {
        cout << "通讯录已满" << endl;
    }
    else {//添加联系人信息
        string name, number, Email, address;
        cout << "请输入姓名:" << endl;
        cin >> name;
        cout << "请输入电话:" << endl;
        cin >> number;
        cout << "请输入邮箱:" << endl;
        cin >> Email;
        cout << "请输入地址:" << endl;
        cin >> address;
        p->personarr[p->people_num].name = name;
        p->personarr[p->people_num].number = number;
        p->personarr[p->people_num].Email = Email;
        p->personarr[p->people_num].address = address;
        
        p->people_num++;
        cout << "添加成功!" << endl;
    }
}
//4.删除联系人
//4.1检测联系人是否存在
int existperson(struct contacts* p,string name) {
    
    for (int i = 0; i < p->people_num; i++) {
        if ( p->personarr[i].name == name ) {
            return i;
        }
    }
    return -1;
}
//删除联系人
void delperson(struct contacts* p,int position) {
    while (position < (p->people_num)) {
        p->personarr[position] = p->personarr[position + 1];
        position++;
    }
    p->people_num--;
    cout << "删除成功!" << endl;
}
//5.修改联系人
void modifyperson(struct contacts* p, int position) {
    string  number, Email, address;
    
    cout << "请输入修改电话:" << endl;
    cin >> number;
    cout << "请输入修改邮箱:" << endl;
    cin >> Email;
    cout << "请输入修改地址:" << endl;
    cin >> address;
 
    p->personarr[position].number = number;
    p->personarr[position].Email = Email;
    p->personarr[position].address = address;
    cout << "修改成功!" << endl;
}
 
//6.查找联系人
void searchperson(struct contacts* p, int position) {
    cout << "姓名:" << p->personarr[position].name << "    "
        << "电话:" << p->personarr[position].number << "    "
        << "邮箱:" << p->personarr[position].Email << "    "
        << "地址:" << p->personarr[position].address << "    ";
}
 
//7.显示通讯录
void showcontact(struct contacts* p) {
    for (int i = 0; i < (p->people_num); i++) {
        cout <<"姓名:" << p->personarr[i].name << "    "
            <<"电话:" << p->personarr[i].number << "    "
            <<"邮箱:" << p->personarr[i].Email << "    "
            <<"地址:" << p->personarr[i].address << "    "<< endl;
 
    }        
}
//8.清空联系人
void cleancontact(struct contacts* p) {
    p->people_num = 0;
    cout << "已清空!" << endl;
}
 
int main() {
    //创建通讯录结构体变量
    struct contacts c;
    //初始化通讯录当前联系人个数
    c.people_num = 0;
    int select = 0;
    string name;
    while (1) {
        menu();
        cin >> select;
        switch (select) {
            case 1:// 添加联系人
                addperson(&c);
                system("pause");
                break;
 
            case 2:// 删除联系人
    
                cout << "请输入删除联系人的姓名:";
                cin >> name;
                if (existperson(&c,name)==-1) {
                    cout << "该联系人不存在!";
                }
                else{
                    delperson(&c, existperson(&c, name));
                }
                
                system("pause");
                break;
 
            case 3:// 修改联系人
            
                cout << "请输入要修改联系人的姓名:";
                cin >> name;
                if (existperson(&c,name) == -1) {
                    cout << "该联系人不存在!";
                }
                else {
                    modifyperson(&c, existperson(&c, name));
                }
                
                system("pause");
                break;
 
            case 4:// 查找联系人
                
                cout << "请输入查找联系人的姓名:";
                cin >> name;
                if (existperson(&c,name) == -1) {
                    cout << "该联系人不存在!";
                }
                else {
                    searchperson(&c, existperson(&c, name));
                }
                
                system("pause");
                break;
 
            case 5:// 显示通讯录 
                showcontact(&c);
                system("pause"); 
                break;
            case 6:// 清空联系人
                cleancontact(&c);
                system("pause");
                break;
            case 0://退出通讯录
                cout << "欢迎下次使用" << endl;
                system("pause");//暂停批文件的处理
                return 0;
                break;
        }
        system("cls");//清屏
    }
    
    system("pause");
    return 0;
}

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

相关文章

  • STL中vector的使用你了解吗

    STL中vector的使用你了解吗

    这篇文章主要为大家详细介绍了STL中vector的使用,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
    2022-03-03
  • c++中#include &lt;&gt;与#include""的区别详细解析

    c++中#include &lt;&gt;与#include""的区别详细解析

    <>先去系统目录中找头文件,如果没有在到当前目录下找。所以像标准的头文件 stdio.h、stdlib.h等用这个方法
    2013-10-10
  • C++读写ini配置文件实现过程详解

    C++读写ini配置文件实现过程详解

    这篇文章主要介绍了C++读写ini配置文件实现过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-07-07
  • C++利用SQLite实现命令行工具

    C++利用SQLite实现命令行工具

    这篇文章主要为大家详细介绍了一个基于 C++、SQLite 和 Boost 库的简单交互式数据库操作 Shell,该 Shell 允许用户通过命令行输入执行各种数据库操作,感兴趣的可以了解下
    2023-11-11
  • C++字符串类的封装你真的了解吗

    C++字符串类的封装你真的了解吗

    这篇文章主要为大家详细介绍了C++字符串类的封装,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
    2022-02-02
  • C语言中的文件操作详解

    C语言中的文件操作详解

    这篇文章主要介绍了C语言中的文件操作详解,使用文件可以将数据直接存放到电脑的硬盘上,做到了数据的持久化
    2022-07-07
  • C++实现随机生成迷宫地牢

    C++实现随机生成迷宫地牢

    这篇文章主要介绍了C++实现随机生成迷宫地牢的相关资料及代码分享,推荐给大家,有需要的小伙伴可以参考下。
    2015-03-03
  • C语言合并排序及实例代码

    C语言合并排序及实例代码

    本篇文章主要介绍C语言合并排序算法,这里对合并排序通过实例代码进行了详细讲解,希望能帮助到大家学习
    2016-07-07
  • c++ #include是怎么样工作的?

    c++ #include是怎么样工作的?

    大多数园友可能对“#include”比较熟悉,因为我们写C/C++程序的时候都会写的字符串之一,但是它是具体怎么工作的?或者它的原理是什么呢?
    2013-01-01
  • strcpy函数实现简示例命分享

    strcpy函数实现简示例命分享

    这篇文章主要介绍了strcpy函数实现简示例命,需要的朋友可以参考下
    2014-03-03

最新评论