這篇文章將為大家詳細(xì)講解有關(guān)C語(yǔ)言通訊錄的示例分析,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
讓客戶(hù)滿(mǎn)意是我們工作的目標(biāo),不斷超越客戶(hù)的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶(hù),將通過(guò)不懈努力成為客戶(hù)在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:空間域名、網(wǎng)站空間、營(yíng)銷(xiāo)軟件、網(wǎng)站建設(shè)、眉縣網(wǎng)站維護(hù)、網(wǎng)站推廣。
具體內(nèi)容如下
main.c文件:
// // main.c // c語(yǔ)言通訊錄 // // Created by stevenchang on 9/6/15. // Copyright (c) 2015 cz. All rights reserved. // /** 1.添加聯(lián)系人 2.刪除聯(lián)系人 3.更新聯(lián)系人 4.顯示所有聯(lián)系人 5.查找聯(lián)系人 6.退出系統(tǒng) */ #includeint main(int argc, const char * argv[]) { //程序的初始化 initContacts(); while(1) { int flag = 0; printf("*************C語(yǔ)言通訊錄*************\n"); printf("************1.添加用戶(hù)***************\n"); printf("************2.刪除用戶(hù)***************\n"); printf("************3.更新用戶(hù)***************\n"); printf("************4.查找用戶(hù)***************\n"); printf("************5.顯示所有用戶(hù)************\n"); printf("************6.退出系統(tǒng)***************\n"); printf("************************************\n"); printf("請(qǐng)輸入1-6的功能編號(hào) :\n"); scanf("%d",&flag); //判斷編號(hào)是否合法 validateNum(flag, 1, 6); switch (flag) { case 1: addContact(); //添加用戶(hù) break; case 2: deleteContact(); //刪除用戶(hù) break; case 3: updateContact(); //更新用戶(hù) break; case 4: searchContact(); //查找用戶(hù) break; case 5: listContact(); //顯示所有用戶(hù) break; case 6: printf("系統(tǒng)正在退出!\n"); printf("成功退出系統(tǒng)!\n"); return 0; break; default: break; } } return 0; }
MyFile.c文件:
// // MyFile.c // c語(yǔ)言通訊錄 // // Created by stevenchang on 9/6/15. // Copyright (c) 2015 cz. All rights reserved. // #include "MyFile.h" //**************函數(shù)的實(shí)現(xiàn)**********************// /** * 添加聯(lián)系人 */ void addContact() { int flag = 0; printf("您選擇的是添加聯(lián)系人,請(qǐng)按操作進(jìn)行!\n"); printf("請(qǐng)輸入用戶(hù)姓名(*注意聯(lián)系人姓名中間不能有空格):\n"); scanf("%s",contacts[totalContactsCount].name); printf("請(qǐng)輸入電話(huà)(*注意聯(lián)系人電話(huà)中間不能有空格): \n"); scanf("%s",contacts[totalContactsCount].tel); printf("是否確認(rèn)添加!1:是 0:否\n"); scanf("%d",&flag); if (flag) { //聯(lián)系人個(gè)數(shù)加1 totalContactsCount++; //將聯(lián)系人信息保存到文件中 writeFile(); } printf("已經(jīng)放棄添加!\n"); return ; } /** * 刪除聯(lián)系人 */ void deleteContact() { int no; printf("您選擇的是刪除聯(lián)系人,請(qǐng)按操作進(jìn)行!\n"); printf("請(qǐng)輸入要?jiǎng)h除的編號(hào):\n"); scanf("%d",&no); //判斷輸入的編號(hào)是否合法 if (!validateNum(no, 1, totalContactsCount)) { printf("您輸入的編號(hào)不合法!\n"); return ; } //合法 //如果刪除的是最后一個(gè)元素 if (no == totalContactsCount) { totalContactsCount--; } else { //如果刪除的不是最后一個(gè)元素 for (int i = no; i < totalContactsCount; i++) { contacts[no-1] = contacts[no]; //元素的移動(dòng)和覆蓋 } totalContactsCount--; } //同步文件 writeFile(); } /** * 更新聯(lián)系人 */ void updateContact() { int no; char newName[NAMELENGTH]; char newTel[TELLENGTH]; printf("您選擇的是更新聯(lián)系人,請(qǐng)按操作進(jìn)行!\n"); printf("請(qǐng)輸入要修改的聯(lián)系人編號(hào):\n"); scanf("%d",&no); //判斷編號(hào)是否合法 if (!validateNum(no, 1, totalContactsCount)) { return ; } //合法 printf("請(qǐng)重新輸入用戶(hù)名:\n"); scanf("%s",newName); printf("請(qǐng)重新輸入電話(huà)號(hào)碼\n"); scanf("%s",newTel); strcpy(contacts[no-1].name, newName); strcpy(contacts[no-1].tel, newTel); //寫(xiě)入文件 writeFile(); } /** * 顯示所有聯(lián)系人 */ void listContact() { printf("您選擇的是顯示所有聯(lián)系人,聯(lián)系人如下!\n"); if (totalContactsCount > 0) { printf("序號(hào)\t姓名\t電話(huà)\n"); for (int i = 0 ; i < totalContactsCount; i++) { printf("%d\t%s\t%s\n",i+1,contacts[i].name, contacts[i].tel); } } else { printf("聯(lián)系人為空,請(qǐng)?zhí)砑勇?lián)系人!\n"); return ; } } /** * 查找聯(lián)系人 */ void searchContact() { printf("您選擇的是查找聯(lián)系人,請(qǐng)按操作進(jìn)行!\n"); char searchName[NAMELENGTH]; printf("請(qǐng)輸入要查找的聯(lián)系人姓名:\n"); scanf("%s",searchName); for (int i = 0 ; i < totalContactsCount; i++) { if (strcmp(searchName, contacts[i].name)==0) { //說(shuō)明相同 printf("聯(lián)系人姓名為:%s,電話(huà)號(hào)碼為:%s\n",contacts[i].name,contacts[i].tel); return ; } if (i == totalContactsCount-1) { printf("此聯(lián)系人不存在!\n"); } } } /** * 通訊錄的初始化 */ void initContacts() { printf("通訊錄正在初始化!\n"); FILE *fp = fopen(filePath, "r"); if (fp!=NULL) { //讀取文件成功 //讀取聯(lián)系人的個(gè)數(shù) fread(&totalContactsCount, sizeof(totalContactsCount), 1, fp); //讀取每個(gè)聯(lián)系人 for (int i = 0; i < totalContactsCount; i++) { //讀取聯(lián)系人數(shù)據(jù),到聯(lián)系人數(shù)組中 fread(&contacts[i], sizeof(Person), 1, fp); } } else { //讀取文件失敗 //創(chuàng)建文件 fp = fopen(filePath, "wb"); //寫(xiě)入聯(lián)系人的個(gè)數(shù) fwrite(&totalContactsCount, sizeof(totalContactsCount), 1, fp); printf("通訊錄文件創(chuàng)建成功!\n"); } //關(guān)閉文件指針 fclose(fp); printf("通訊錄初始化成功!\n"); } /** * 判斷功能編號(hào)是否合法 1:合法 0:非法 */ int validateNum(int num, int min, int max) { if (num < min || num > max) { printf("輸入的功能編號(hào)不正確,請(qǐng)重新輸入!\n"); return 0; } return 1; } /** *將聯(lián)系人寫(xiě)入文件 */ void writeFile() { //以二進(jìn)制文件打開(kāi)文件 FILE *fp = fopen(filePath, "wb"); if (fp != NULL) { //寫(xiě)入聯(lián)系人個(gè)數(shù) fwrite(&totalContactsCount, sizeof(totalContactsCount), 1, fp); //寫(xiě)入每個(gè)聯(lián)系人個(gè)數(shù) for (int i = 0; i < totalContactsCount; i++) { fwrite(&contacts[i], sizeof(Person), 1, fp); } } fclose(fp); printf("文件更新成功\n"); }
MyFile.h文件:
// // MyFile.h // c語(yǔ)言通訊錄 // // Created by stevenchang on 9/6/15. // Copyright (c) 2015 cz. All rights reserved. // #ifndef __c_______MyFile__ #define __c_______MyFile__ #include#include #define N 100 //宏定義一個(gè)通訊錄的容量 #define NAMELENGTH 22 //宏定義一個(gè)名字的長(zhǎng)度 #define TELLENGTH 12 //宏定義一個(gè)電話(huà)號(hào)碼的長(zhǎng)度 //********************函數(shù)的聲明*********************// void addContact(); //添加聯(lián)系人 void deleteContact(); //刪除聯(lián)系人 void updateContact(); //更新聯(lián)系人 void listContact(); //顯示所有聯(lián)系人 void searchContact(); //查找聯(lián)系人 void initContacts(); //通訊錄的初始化 int validateNum(int num, int min, int max); //判斷功能編號(hào)是否合法 1:合法 0:非法 void writeFile(); //將聯(lián)系人寫(xiě)入文件 typedef struct Person { //定義一個(gè)結(jié)構(gòu)體 char name[NAMELENGTH]; //定義姓名數(shù)組 char tel[TELLENGTH]; //定義結(jié)構(gòu)體數(shù)組 } Person; //定義文件路徑 char *filePath = "telData.data"; int totalContactsCount = 0; Person contacts[N]; //定義Person結(jié)構(gòu)體數(shù)組 #endif /* defined(__c_______MyFile__) */
關(guān)于“C語(yǔ)言通訊錄的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。