學生信息鏈表,建立,插入,刪除,遍歷,查找,修改,最大(小)值,平均

来源:https://www.cnblogs.com/1112zx/archive/2019/03/17/10549694.html
-Advertisement-
Play Games

/ 【例11 10】建立一個學生成績信息(包括學號、姓名、成績)的單向鏈表,學生數據按學號由小到大順序排列,要求實現對成績信息的插入、修改、刪除和遍歷操作。 / / 用鏈表實現學生成績信息的管理 / include include include struct stud_node{ int num; ...


/【例11-10】建立一個學生成績信息(包括學號、姓名、成績)的單向鏈表,學生數據按學號由小到大順序排列,要求實現對成績信息的插入、修改、刪除和遍歷操作。/

/* 用鏈表實現學生成績信息的管理 */

include<stdio.h>

include<stdlib.h>

include<string.h>

struct stud_node{
int num;
char name[20];
int score;
struct stud_node next;
};
struct stud_node
Create_Stu_Doc(); /* 新建鏈表 /
struct stud_node
InsertDoc(struct stud_node * head, struct stud_node stud); / 插入 /
struct stud_node
DeleteDoc(struct stud_node * head, int num); /* 刪除 /
void Print_Stu_Doc(struct stud_node
head); /* 遍歷 */

struct stud_node * Find(struct stud_node * head, int num); /查找/
struct stud_node * Modify(struct stud_node * head, int num, int score); /修改成績/
struct stud_node * Max(struct stud_node * head); /求最高分數的學生記錄/
struct stud_node * Min(struct stud_node * head); /求最低分數的學生記錄/
double Ave(struct stud_node * head); /求平均分/
void Save(struct stud_node * head);
struct stud_node *Read();

typedef struct stud_node *LNode;
LNode head,p;

int main(void)
{
struct stud_node head=NULL, p;
int choice, num, score;
char name[20];
int size = sizeof(struct stud_node);

do{
printf("1:Create 2:Insert 3:Delete 4:Print 5:Modify 6:Find 7:Max 8:Save 9:Read 10:Min 0:Exit\n");
scanf("%d", &choice);
switch(choice){
case 1:
head = Create_Stu_Doc();
break;
case 2:
printf("Input num,name and score:\n");
scanf("%d%s%d", &num,name, &score);
p = (struct stud_node *) malloc(size);
p->num = num;
strcpy(p->name, name);
p->score = score;
head = InsertDoc(head, p);
break;
case 3:
printf("Input num:\n");
scanf("%d", &num);
head = DeleteDoc(head, num);
break;
case 4:
Print_Stu_Doc(head);
break;
case 5:
printf("Input num:\n");
scanf("%d", &num);
printf("Input score:\n");
scanf("%d", &score);
head=Modify(head,num,score);
break;
case 6:
printf("Input num:\n");
scanf("%d", &num);
p=Find(head,num);
if(p!=NULL)
printf("%d\t%s\t%d \n", p->num, p->name, p->score);
else
printf("Not Found %d\n",num);
break;
case 7:
p=Max(head);
if(p!=NULL)
printf("%d\t%s\t%d \n", p->num, p->name, p->score);
else
printf("Not Found\n");
break;
case 8:
Save(head);
break;
case 9:
head=Read();
break;
case 10:
p=Min(head);
if(p!=NULL)
printf("%d\t%s\t%d \n", p->num, p->name, p->score);
else
printf("Not Found\n");
break;
case 0:
break;
}
}while(choice != 0);

return 0;
}

/新建鏈表/
struct stud_node * Create_Stu_Doc()
{
struct stud_node * head,*p;
int num,score;
char name[20];
int size = sizeof(struct stud_node);

head = NULL;
printf("Input num,name and score:\n");
scanf("%d%s%d", &num,name, &score);
while(num != 0){    /* 學號0表示輸入結束,且學號0對應的姓名和成績都要輸入 */ 
   p = (struct stud_node *) malloc(size);
   p->num = num;
   strcpy(p->name, name);
   p->score = score;
   head = InsertDoc(head, p);    /* 調用插入函數 */
   scanf("%d%s%d", &num, name, &score);

}
return head;
}

/* 插入操作 /
struct stud_node
InsertDoc(struct stud_node * head, struct stud_node stud)
{
struct stud_node
ptr ,ptr1, ptr2;

ptr2 = head; 
ptr = stud;                 /* ptr指向待插入的新的學生記錄結點 */

if(head == NULL){ /* 原鏈表為空時的插入 */ 
    head = ptr;             /* 新插入結點成為頭結點 */
    head->next = NULL;
}
else{             /* 原鏈表不為空時的插入 */
    while((ptr->num > ptr2->num) && (ptr2->next != NULL)){
        ptr1 = ptr2;        /* ptr1, ptr2各後移一個結點 */
        ptr2 = ptr2->next;
    }
    if(ptr->num <= ptr2->num){  
        if(head == ptr2)  head = ptr;/* 新插入結點成為頭結點 */
        else ptr1->next = ptr;       /* 在ptr1與ptr2之間插入新結點 */
        ptr->next = ptr2;
    }
    else{                            /* 新插入結點成為尾結點 */
        ptr2->next = ptr;
        ptr->next = NULL; 
    } 
}
return head;

}

/* 刪除操作 /
struct stud_node
DeleteDoc(struct stud_node * head, int num)
{
struct stud_node ptr1, ptr2;

if(head == NULL)  /*鏈表空 */
    return NULL;
else if(head->num == num){
    /* 要被刪除結點為表頭結點 */
    while(head != NULL && head->num == num){  
        ptr2 = head;
        head = head->next;
        free(ptr2);
    }
}
else{
    /* 要被刪除結點為非表頭結點  */
    ptr1 = head;
    ptr2 = head->next; /*從表頭的下一個結點搜索所有符合刪除要求的結點 */
    while(ptr2 != NULL){
        if(ptr2->num == num){   /* ptr2所指結點符合刪除要求 */
            ptr1->next = ptr2->next;
            free(ptr2); 
        }
        else 
            ptr1 = ptr2;       /* ptr1後移一個結點 */
        ptr2 = ptr1->next;    /* ptr2指向ptr1的後一個結點 */
    }
}

return head;

}

/遍歷操作/
void Print_Stu_Doc(struct stud_node * head)
{
struct stud_node * ptr;

if(head == NULL){
    printf("\nNo Records\n");
    return;
}
printf("\nThe Students' Records Are: \n");
printf("Num\tName\tScore\n");
for(ptr = head; ptr != NULL; ptr = ptr->next)
    printf("%d\t%s\t%d \n", ptr->num, ptr->name, ptr->score);

}

struct stud_node * Find(struct stud_node * head, int num) /查找/
{
struct stud_node *ptr;

if(head==NULL)
    return NULL;
else
{
    for(ptr=head;ptr!=NULL;ptr=ptr->next)/*for迴圈從head開始到NULL迴圈*/ 
        if(ptr->num==num)
            break;
            return ptr;
}

}

struct stud_node * Modify(struct stud_node * head, int num, int score)/修改通過查找學號修改成績/
{
struct stud_node *ptr;

if(head==NULL)
    return NULL;
else
{
    for(ptr=head;ptr!=NULL;ptr=ptr->next)
        if(ptr->num==num)
        {
            ptr->score=score;
            break;
        }
                
    return head;
}

}

struct stud_node * Max(struct stud_node * head)
{
struct stud_node maxp,ptr;

if(head==NULL)
    return NULL;
else
{
    maxp=head;
    for(ptr=head->next;ptr!=NULL;ptr=ptr->next)
        if(maxp->score<ptr->score)
            maxp=ptr;
    
    return maxp;
}

}
struct stud_node * Min(struct stud_node * head)
{
struct stud_node minp,ptr;

if(head==NULL)
    return NULL;
else
{
    minp=head;
    for(ptr=head->next;ptr!=NULL;ptr=ptr->next)
        if(minp->score>ptr->score)
            minp=ptr;
    
    return minp;
}

}

void Save(struct stud_node * head)
{
FILE fp;
if((fp=fopen("data.txt","w")) == NULL){ /
打開文件(套用)*/
printf("File open error!\n");
exit(0);
}

struct stud_node * ptr;

if(head == NULL){
    return;
}

for(ptr = head; ptr->next != NULL; ptr = ptr->next)
    fprintf(fp,"%d %s %d\n", ptr->num, ptr->name, ptr->score);
fprintf(fp,"%d %s %d", ptr->num, ptr->name, ptr->score);/*輸出的最後沒有換行*/
      
if( fclose(fp) ){/*關閉文件(套用)*/
    printf( "Can not close the file!\n" );
    exit(0);
}   

}

struct stud_node Read()
{
FILE
fp;
if((fp=fopen("data.txt","r")) == NULL){
printf("File open error!\n");
exit(0);
}

struct stud_node * head,*tail,*p;
//int num,score;
//char  name[20];
int size = sizeof(struct stud_node);

head = tail=NULL;


while(!feof(fp)){   /* 讀到結束標誌結束 */ 
   p = (struct stud_node *) malloc(size);
   fscanf(fp,"%d%s%d", &p->num, p->name, &p->score);
   //head = InsertDoc(head, p);    /* 調用插入函數 */
   p->next = NULL;
    if(head == NULL) 
        head = p;
    else  
        tail->next = p;
    tail = p;  

}

     if( fclose(fp) ){
    printf( "Can not close the file!\n" );
    exit(0);
}

return head;

}


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今天想做一個微博爬個人頁面的工具,滿足一些不可告人的秘密。那麼首先就要做那件必做之事!模擬登陸…… 關註公眾號「**Python專欄**」,後臺回覆「**模擬微博登陸**」,獲取全套微博自動登陸代碼。 ...
  • GitHub代碼練習地址:https://github.com/Neo-ML/PythonPractice/blob/master/SpiderPrac12_ajax.py 瞭解ajax 是一種非同步請求 一定會有url,請求方法,可能有數據 一般使用json格式 案例,爬取部分豆瓣電影排行榜, 代碼 ...
  • π的計算 一、π的簡介 π的介紹 圓周率用希臘字母 π(讀作pài)表示,是一個常數(約等於3.141592654),是代表圓周長和直徑的比值。它是一個即無限不迴圈小數,在日常生活中,通常都用3.14代表圓周率去進行近似計算。 π的求解歷程 1965年,英國數學家約翰·沃利斯(John Wallis ...
  • python中的猴子補丁Monkey Patch 什麼是猴子補丁 the term monkey patch only refers to dynamic modifications of a class or module at runtime, motivated by the intent t ...
  • Java數據結構-HashMap 1. HashMap數據結構 沒有哈希衝突時,為數組,支持動態擴容 哈希衝突時,分為兩種情況: 1. 當衝突長度小於8或數組長度小於64(MIN_TREEIFY_CAPACITY預設值為64)時,為數組+鏈表(Node) 2. 當衝突長度大於8時,為數組+紅黑樹/鏈 ...
  • 作為一個有多年PHP開發經驗的碼農,我也是前段時間才發現PHP處理數組有這麼好用的函數, 至此之前,我處理數組的數據基本都是使用迴圈,記錄一下兩個函數的用法: array_column() 函數 返回輸入數組中某個單一列的值。 語法: array_column(array,column_key,in ...
  • 基於Cmake、QT Creator、Visual Studio的C++項目構建、開發、編譯是初學者必要的工具,本文主要介紹這些工具的下載與安裝,以及C++及Qt項目構建,主要包括 1.基於VS構建Qt項目;2.基於Qt Creater構建,在VS中開發Qt Creater生成的項目;3.基於Cma... ...
  • 概述 在PHP中有一種代碼復用的技術, 因為單繼承的問題, 有些公共方法無法在父類中寫出, 而 Trait可以應對這種情況, 它可以定義一些復用的方法, 然後在你需要使用的類中將其引入即可. 剛開始的時候給我的感覺就是將trait代碼塊直接拿到類中的意思, 但後來我發現, 我太天真了. PHP中的T ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...