当前位置:   article > 正文

用C语言链表实现图书管理

用C语言链表实现图书管理
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct ListNode {
    int val;//编号
    char title[50];//书名
    float price;//价格
    struct ListNode* next;
};

// 在尾部插入节点
struct ListNode* insertAtTail(struct ListNode* head, int val,char mytitle[50],float price) {
    struct ListNode* new_node = (struct ListNode*)malloc(sizeof(struct ListNode));
    new_node->val = val;
    strcpy(new_node->title,mytitle);
    new_node->price=price;
    new_node->next = NULL;
    if (head == NULL) {
        return new_node;
    }
    struct ListNode* p = head;
    while (p->next != NULL) {
        p = p->next;
    }

    p->next = new_node;
    return head;
}
void listAll(struct ListNode* head){
    printf("编号\t书名\t价格\n");
    struct ListNode* p=head;
    while(p!=NULL){
        printf("%d\t%s\t%f", p->val, p->title, p->price);
        printf("\n");
        p=p->next;
    }
}
// 删除指定值的节点
struct ListNode* deleteNode(struct ListNode* head, int val) {
    struct ListNode* p = head;
    struct ListNode* prev = NULL;
 
    while (p != NULL && p->val != val) {
        prev = p;
        p = p->next;
    }
 
    if (p == NULL) {
        return head;
    }
 
    if (prev == NULL) {
        head = head->next;
    } else {
        prev->next = p->next;
    }
 
    free(p);
 
    return head;
}
// 修改指定值的节点的值
struct ListNode* modifyNode(struct ListNode* head, int old_val,char newTitle[50],float newPrice) {
    struct ListNode* p = head;
 
    while (p != NULL && p->val != old_val) {
        p = p->next;
    }
    if (p == NULL) {
        return head;
    }
    strcpy(p->title  ,newTitle);
    p->price = newPrice;
 
    return head;
}
// 查找指定值的节点的位置
int getIndexByVal(struct ListNode* head, int val) {
    struct ListNode* p = head;
    int i = 0;
 
    while (p != NULL && p->val != val) {
        p = p->next;
        i++;
    }
    if (p == NULL) {
        return -1;
    }
 
    return i;
}
int main(){
   
  
    struct ListNode* p=NULL;
   
   for (int i = 0; i < 100; i++)
    {
        printf("%s", "1.插入图书\n");
        printf("%s", "2.删除图书\n");
        printf("%s", "3.图书列表\n");
        printf("%s", "4.修改图书\n");
        printf("%s", "请输入1或2或3或4:\n");
        int select;
        scanf("%d", &select);
       
        if (select == 1)
        {
            int myVal;
            printf( "请输入编号:\n");
            scanf("%d", &myVal);
            printf( "请输入书名:\n");
            char myTitle[50];
            scanf("%s", myTitle);
            printf( "请输入价格:\n");
            float myPrice;
            scanf("%f",&myPrice);
            if(p==NULL){
                p=insertAtTail(NULL,myVal,myTitle,myPrice);

            }else{
                p=insertAtTail(p,myVal,myTitle,myPrice);
            }
        }else if(select==3){
            listAll(p);
        }else if(select==2){
            int deleteVal;
            printf("请输入要删除的图书的编号:\n");
            scanf("%d",&deleteVal);
            p=deleteNode(p,deleteVal);
        }else if(select==4){
            int modifyVal;
            printf("请输入要修改的图书的编号:\n");
            scanf("%d",&modifyVal);
            if(getIndexByVal(p,modifyVal)==-1){
                printf("图书不存在");
                continue;
            }
            printf( "请输入书名:\n");
            char modifyTitle[50];
            scanf("%s", modifyTitle);
            printf( "请输入价格:\n");
            float modifyPrice;
            scanf("%f",&modifyPrice);
            p=modifyNode(p,modifyVal,modifyTitle,modifyPrice);
        }


    }
   
    
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153

要改成班级管理,ListNode中val不变,其它属性变成学生姓名、成绩等等。
注意:c语言的编译不要用visual studio,因为它连scanf都会报错,会要求您使用scanf_s。建议用记事本或visual studio code编写,然后在命令行窗口输入gcc命令来编译。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/243227
推荐阅读
相关标签
  

闽ICP备14008679号