大可爱 发表于 2018-10-13 16:34:54

代码中的library是真么意思,和图片中的变量a有什么关系

图片中的内容全部理解,但是代码中的library是什么意思,和图片中的变量a有什么关系
#include <stdio.h>
#include <stdlib.h>

struct Book
{
        char title;
        char author;
        struct Book *next;
};

void getInput(struct Book *book);
void addBook(struct Book **library);
void printLibrary(struct Book *library);
void releaseLibrary(struct Book *library);

void getInput(struct Book *book)
{
        printf("请输入书名:");
        scanf("%s", book->title);
        printf("请输入作者:");
        scanf("%s", book->author);
}

void addBook(struct Book **library)
{
        struct Book *book, *temp;

        book = (struct Book *)malloc(sizeof(struct Book));
        if (book == NULL)
        {
                printf("内存分配失败了!\n");
                exit(1);
        }

        getInput(book);

        if (*library != NULL)
        {
                temp = *library;
                *library = book;
                book->next = temp;       
        }
        else
        {
                *library = book;
                book->next = NULL;
        }
}

void printLibrary(struct Book *library)
{
        struct Book *book;
        int count = 1;

        book = library;
        while (book != NULL)
        {
                printf("Book%d: ", count);
                printf("书名: %s\n", book->title);
                printf("作者: %s\n", book->author);
                book = book->next;
                count++;
        }
}

void releaseLibrary(struct Book *library)
{
        while (library != NULL)
        {
                free(library);
                library = library->next;
        }
}

int main(void)
{
        struct Book *library = NULL;
        int ch;

        while (1)
        {
                printf("请问是否需要录入书籍信息(Y/N):");
                do
                {
                        ch = getchar();
                } while (ch != 'Y' && ch != 'N');

                if (ch == 'Y')
                {
                        addBook(&library);
                }
                else
                {
                        break;
                }
        }

        printf("请问是否需要打印图书信息(Y/N):");
        do
        {
                ch = getchar();
        } while (ch != 'Y' && ch != 'N');

        if (ch == 'Y')
        {
                printLibrary(library);
        }

        releaseLibrary(library);

        return 0;
}


claws0n 发表于 2018-10-13 16:50:00

library 就是图书馆~
你每一次透过 addBook 增加一本书
temp = *library;
*library = book;
book->next = temp;
有一些差别在于你是头插法或尾插法跟插入指定位置而已,手法一样

大可爱 发表于 2018-10-13 17:02:50

claws0n 发表于 2018-10-13 16:50
library 就是图书馆~
你每一次透过 addBook 增加一本书
temp = *library;


1.图片中是 插入指定位置吗
2.library 怎么觉得像 结构体数组,往数组里放元素。library 是图中的 空链表吗

claws0n 发表于 2018-10-13 17:11:14

大可爱 发表于 2018-10-13 17:02
1.图片中是 插入指定位置吗
2.library 怎么觉得像 结构体数组,往数组里放元素。library 是图中的 空链 ...

1.那是空链表,跟插入法没有关系
2.#77.struct Book *library = NULL;   // 是结构体指针
透过 #90 addBook,addBook 里是 malloc

大可爱 发表于 2018-10-13 17:57:35

claws0n 发表于 2018-10-13 17:11
1.那是空链表,跟插入法没有关系
2.#77.struct Book *library = NULL;   // 是结构体指针
透过 #90 ...

这个是指定位置插入吗

claws0n 发表于 2018-10-13 18:15:14

大可爱 发表于 2018-10-13 17:57
这个是指定位置插入吗

没有说,但是一般情况,不是头尾都是指定位置
页: [1]
查看完整版本: 代码中的library是真么意思,和图片中的变量a有什么关系