亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言如何實現簡單電子通訊錄

發布時間:2020-06-28 17:00:02 來源:億速云 閱讀:275 作者:清晨 欄目:開發技術

不懂C語言如何實現簡單電子通訊錄?其實想解決這個問題也不難,下面讓小編帶著大家一起學習怎么去解決,希望大家閱讀完這篇文章后大所收獲。

這兩天學完系統調用和標準IO,之前的通訊錄可以進行一些改進,將數據保存到文件中(圖我這里就不發了)。

原理:每次啟動程序時先從預設文件中以只讀的形式讀取保存的通訊錄信息,然后將讀取到的信息導入到結構體中;每次執行退出時,先將預設文件以更新方式打開,并將文件中之前保存的信息清空,然后將結構體的數據保存到文件中去,再退出程序。

還有在文件寫入時和讀取時,先寫入(讀取)保存數據的總個數,讓程序知道有多少數據要寫入(讀取),然后保存每個數據的字節數(程序會根據每個數據的字節數來進行保存),最后再保存數據。

與之前版本相比,改動的只有主函數中加入了讀取文件和寫入數據這兩個步驟,還有的變動就是結構體從一個變成了兩個,將指針從原來一個結構體中分離出來,方便數據從文件中的導入導出。下面是代碼(免得你們往前翻,我把之前的代碼都修改了考過來):

頭文件 head.h 唯一修改的就是結構體

#ifndef HEAD_H_
#define HEAD_H_

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>       // sleep函數頭文件
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#define uint unsigned int
#define OK      0
#define ERROR     -1
#define MALLOC_ERROR -2
#define N       20 


typedef int ElementType;
typedef struct data
{
  ElementType ID;       // ID號
  char Name [N];       // 姓名
  char Mobile_Phone [N];   // 手機號碼
  char Home_Address [N];   // 家庭住址
  char Company_Tell [N];   // 公司電話

}Data;
typedef struct _Node
{
  Data data;
  struct _Node* next;     // 節點指針
}Node;

typedef Node* PNode;      // 重命名節點指針類型

//顯示操作界面
int Interface_Display ();

//添加好友信息 (尾插法)
int Add_Friend (PNode head, ElementType num);

//顯示所有好友信息
int Friend_Information (PNode head);

//查找好友
int Search_Friend (PNode head, char* Name);

//刪除好友
void Delete_Friend (PNode head, char* Name);

#endif

源文件 head.c 關于結構體的部分要進行修改

#include "head.h"

//顯示操作界面
int Interface_Display ()
{
  system ("clear");
  printf ("\t*****************************************\n");
  printf ("\t~     歡迎使用通訊錄        ~\n");
  printf ("\t~                    ~\n");
  printf ("\t~   1 >>>>>>>> 添加好友信息     ~\n");
  printf ("\t~   2 >>>>>>>> 列表好友信息     ~\n");
  printf ("\t~   3 >>>>>>>> 搜索好友       ~\n");
  printf ("\t~   4 >>>>>>>> 刪除好友       ~\n");
  printf ("\t~   5 >>>>>>>> 退出         ~\n");
  printf ("\t~                    ~\n");
  printf ("\t~                    ~\n");
  printf ("\t~            作者:believe ~\n");
  printf ("\t*****************************************\n");
  printf ("                      \n");
  printf ("                      \n");
  printf ("\t請輸入對應數字選擇相應功能:");
}

//添加好友信息 (尾插法)
int Add_Friend (PNode head, ElementType num)
{
  if (NULL == head)
  {
    return ERROR;
  }

  //創建一個新的結點
  PNode p = (PNode) malloc(sizeof(Node)/sizeof(char));
  if (NULL == p)
  {
    return MALLOC_ERROR;
  }

  //將新數據賦給新結點
  system("clear");  
  printf ("\t*************添加好友***************\n");

  p->data.ID = num;
  printf ("\t好友的ID為:%d\n", p->data.ID);
  printf ("\n");

  printf ("\t請輸入好友的名字:");
  scanf ("%s", p->data.Name);
  printf ("\n");

  printf ("\t請輸入好友的手機號:");
  scanf ("%s", p->data.Mobile_Phone);
  printf ("\n");

  printf ("\t請輸入好友的家庭住址:");
  scanf ("%s", p->data.Home_Address);
  printf ("\n");

  printf ("\t請輸入好友的公司電話:");
  scanf ("%s", p->data.Company_Tell);
  printf ("\n");

  p->next = NULL;

  //找到最后一個結點
  PNode Ptmp;         //將頭結點地址給臨時指針Ptmp
  Ptmp = head;
  while (Ptmp->next)
  {
    Ptmp = Ptmp->next;
  }
  Ptmp->next = p;

  return OK;

}

//顯示所有好友信息
int Friend_Information (PNode head)
{
  if (NULL == head)
  {
    return ERROR;
  }

  PNode p = head->next;

  printf ("\tID\t姓名\t\t手機號\t\t住址\t\t\t公司電話\n");

  while (p)
  {
    printf ("\t%d\t%s\t\t%s\t\t%s\t\t\t%s\n", p->data.ID, p->data.Name,p->data.Mobile_Phone, p->data.Home_Address, p->data.Company_Tell);
    p = p->next;
  }
  putchar('\n');

  return OK;
}

//通過名字查找好友
int Search_Friend (PNode head, char* Name)     
{
  PNode p = head;
  PNode q = NULL;

  if ((NULL != p) && NULL != (p->next))
  {
    while (p->next) 
    {
      q = p->next;
      if ((NULL != q) && 0 == (strcmp(q->data.Name, Name)))
      {
        printf ("\t好友信息: \n\tID:%d\n\t姓名: %s\n\t手機號碼: %s\n\t家庭地址:%s\n\t公司電話: %s\n", q->data.ID, q->data.Name, q->data.Mobile_Phone, q->data.Home_Address, q->data.Company_Tell);
      }
      else
      {
        printf ("\t對不起,您的通訊錄沒有該好友!\n");
      }
      p = p->next;
    }
  }

  /* 另一種做法
  if (NULL == head)
  {
    return ERROR;
  }

  PNode p;
  int flag = 1;
  for (p = head->next; p != NULL; p = p->next)
  {
    if (0 == strcmp(p->data.Name, Name))
    {
      flag = 0;
      printf ("\t好友信息:\n\tID: %d\n\t姓名: %s\n\t手機號碼: %s\n\t家庭地址: %s\n\t公司電話: %s\n", p->data.ID, p->data.Name, p->data.Mobile_Phone, p->data.Home_Address, p->data.Company_Tell);
    }
  }
  fi (flag)
  {
    printf ("\t對不起,您的通訊錄沒有該好友!\n");
  }

  putchar('\n');
  */

  return OK;
}

//刪除好友
void Delete_Friend (PNode head, char* Name)
{
  PNode p = head;
  PNode q = NULL;

  while (NULL != p && NULL != (p->next))
  {
    q = p->next;
    if (NULL != q && 0 == strcmp(q->data.Name, Name))
    {
      p->next = q->next;
      free(q);

      int j;

      printf ("\t正在刪除\n");
      printf ("\t請稍候");
      fflush (stdout);      //強制刷新緩存,輸出顯示
      for (j = 0; j < 2; j++)
      {
        sleep (1);       //linux使用sleep,參數為秒
        printf (".");
        fflush(stdout);     //強制刷新緩存,輸出顯示
      }
      printf ("\n");
      printf ("\t該好友已成功刪除!\n");
    }
    else if (NULL == q->next && 0 != strcmp(q->data.Name, Name))
    {
      printf ("\t您的通訊錄沒有該好友!\n");
    }
    p = p->next;
  }
}

主函數 main.c 加入了數據的讀取和寫入,已標明

/*******************************************************************
需求:制作一個電子通訊錄,通過該通訊錄能錄入好友ID號、姓名(英文)、手
機號碼,家庭住址,公司電話。
模塊:
  主界面:主要顯示軟件功能,A)添加好友信息 B)列表好友信息。(包含排序
  功能) C)搜索好友 D)刪除好友
  A)用戶輸入INSERT命令后,讓用戶輸入好友信息。添加成功或失敗都需提示
  B)用戶輸入DISPLAY命令后,好友信息升序排列
  C)用戶輸入SEARCH命令后,讓用戶輸入將要搜索好友姓名查詢。如果未搜索
  到請友好提示。如果搜索到,顯示處該好友信息
  D)用戶輸入DELETE命令后,讓用戶輸入將要刪除好友姓名刪除,如果存在同
  名的多個好友,則列表出,所有同名的好友信息,讓用戶通過輸入ID號刪除
  提示用戶刪除成功。
**********************************************************************/
#include "head.h"

int main ()
{
  int Function;
  int i = 0;
  char Name[N];
  int cho;

  // 創建頭結點并為其分配空間
  PNode head_node = (PNode) malloc(sizeof(Node)/sizeof(char));
  if (NULL == head_node)
  {
    return MALLOC_ERROR;
  }
  head_node->next = NULL;


/****************************************************************
  打開存放信息的文件并將里面的數據導入到鏈表中區
****************************************************************/
  // 以只讀方式打開存放信息的文件,
  FILE *fp1 = fopen ("student.txt", "r+"); 
  if (NULL == fp1) 
  { 
    printf ("fopen"); 
    return -1; 
  } 

  PNode tmp = head_node; 
  int count; 
  int ret; 

  // 保存讀記錄的個數并判斷是否讀到文件結尾,如果讀到文件結尾,
  // 它返回一個非0 的值
  ret = fread (&count, sizeof(int), 1, fp1); 
  if(ret != 0) 
  { 
    for (i = 0; i < count; i++) 
    {
      // 創建新結點用來保存讀取的數據
      Node *node = (Node*)malloc(sizeof(Node)/sizeof(char));   

      int len;          
      fread (&len, sizeof(int), 1, fp1);   // 讀取數據長度
      fread (&(node->data), len, 1, fp1);   // 讀取數據 

      node->next = NULL;   
      while (tmp->next)            // 向后遍歷
      { 
        tmp = tmp->next; 
      } 
      tmp->next = node;            // 將結點導入鏈表中 
    } 
  } 

  if (ret == 0 && !feof(fp1))           // 讀取失敗
  { 
    perror ("fread"); 
    return -1; 
  } 
  fclose (fp1);                  // 關閉剛剛打開的文件
/****************************************************************
  文件導入鏈表結束,關閉文件
****************************************************************/  

  i = 1;               // i初始化(i既是ID編號)
  while (1)
  {
    Interface_Display ();      // 主界面
    scanf ("%d", &Function);

    switch (Function)        // 功能選擇
    {
      case 1:           // 添加好友
      {
        Function = 0;
        Add_Friend (head_node, i++);
        int j;

        printf ("\t正在添加\n");
        printf ("\t請稍候");
        fflush (stdout);    // 強制刷新緩存,輸出顯示
        for (j = 0; j < 2; j++)
        {
          sleep (1);     // Linux 使用sleep,參數為秒
          printf (".");
          fflush (stdout);  // 強制刷新緩存,輸出顯示
        }
        printf ("\n");
        printf ("\t添加成功!\n");
        printf ("\t返回主菜單請輸入1:");
        scanf ("%d", &cho);
        if (1 == cho)
        {
          break;
        }
        else
        {
          printf ("\t對不起!您的輸入有誤!請重新輸入:");
          scanf ("%d", &cho);
          break;
        }
        break;
      }      
      case 2:         // 顯示好友信息
      {
        system ("clear");
        printf ("\t***********好友信息******************\n");
        printf ("\n");

        Friend_Information (head_node);
        Function = 0;
        printf ("\t返回主菜單請輸入1:");
        scanf ("%d", &cho);
        if (1 == cho)
        {
          break;
        }
        else
        {
          printf ("\t對不起!您的輸入有誤!請重新輸入:");
          scanf ("%d", &cho);
          break;
        }
        break;
      }
      case 3:         // 查找好友
      {
        system ("clear");
        printf ("\t*************查找好友*************\n");
        printf ("\t請輸入您要查找的好友姓名:");
        scanf ("%s", Name);
        printf ("\n");

        int j;     
        printf ("\t正在查找\n");
        printf ("\t請稍候");
        fflush (stdout);    // 強制刷新緩存,輸出顯示
        for (j = 0; j < 2; j++)
        {
          sleep (1);     // Linux 使用sleep,參數為秒
          printf (".");
          fflush (stdout);  // 強制刷新緩存,輸出顯示
        }
        printf ("\n");
        Search_Friend (head_node, Name);
        printf ("\t返回主菜單請輸入1:");
        scanf ("%d", &cho);
        if (1 == cho)
        {
          break;
        }
        else
        {
          printf ("\t對不起!您的輸入有誤!請重新輸入:");
          scanf ("%d", &cho);
          break;
        }
        break;
      }
      case 4:           //刪除好友
      {
        system ("clear");
        printf ("\t*************刪除好友*************\n");
        printf ("\t請輸入要刪除好友的姓名:");
        scanf ("%s", Name);
        printf ("\n");
        Delete_Friend (head_node, Name);
        printf ("\t返回主菜單請輸入1:");
        scanf ("%d", &cho);
        if (1 == cho)
        {
          break;
        }
        else
        {
          printf ("\t對不起!您的輸入有誤!請重新輸入:");
          scanf ("%d", &cho);
          break;
        }
        break;
      }  
      case 5:           //退出通訊錄
      {

/****************************************************************
        退出程序前,將鏈表中的數據導入到文件中去
****************************************************************/
        // 以更新方式打開存放信息的文件(打開時會清空文件)
        FILE *fp2 = fopen ("student.txt", "wb+"); 
        if(NULL == fp2) 
        { 
          printf ("fopen"); 
          return -1; 
        } 

        tmp = head_node->next;     // tmp為第一個結點
        count = 0;           // 用來存放鏈表長度
        while(tmp)           // 求鏈表長度
        { 
          count++; 
          tmp = tmp->next; 
        }

        // 要寫入數據的個數
        fwrite(&count, sizeof(int), 1, fp2); 
        tmp = head_node;        // tmp初始化
        while (tmp->next) 
        { 
          Node* p = tmp->next; 
          tmp->next = p->next; 

          // 寫入數據的長度         
          int len = sizeof(p->data); 
          fwrite (&len, sizeof(int), 1, fp2); 

          //寫入數據 
          fwrite (&(p->data), sizeof(Data), 1, fp2); 

          free (p);          
        } 
        fclose (fp2); 
/****************************************************************
        數據保存結束,即將退出程序
****************************************************************/

        Function = 0;
        system ("clear");
        exit (0);
      }
      default:          //輸入有誤
      {
        Function = 0;
        printf ("\t對不起!您的輸入有誤!請重新輸入:");
        scanf ("%d", &Function);
        break;
      }      
    }    
  }  

  return 0;
}

感謝你能夠認真閱讀完這篇文章,希望小編分享C語言如何實現簡單電子通訊錄內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁化县| 新干县| 孟州市| 玉林市| 钟山县| 扶绥县| 高雄市| 贵德县| 清水河县| 昌平区| 舞阳县| 河北区| 安宁市| 黎城县| 保靖县| 开远市| 敦煌市| 包头市| 清新县| 香河县| 武宣县| 高碑店市| 忻州市| 大庆市| 商丘市| 辰溪县| 武宣县| 望城县| 澄迈县| 西充县| 永城市| 蒙阴县| 隆化县| 定西市| 海城市| 合阳县| 永修县| 兴化市| 雷山县| 永平县| 阳春市|