C language book information management system

C language book information management system

Topic 7: Book Information Management System
Design and implement a "book information management system" that meets the following requirements:
1. The system works in a menu mode;
2. Use linked lists or structured arrays to manage and maintain book information;
3. Use binary files Save book record information on disk:
4. Each node in the linked list or each element in the structure array includes the basic fields of "book number, book title, author, publisher, publication time, price";
5. Implement the following basic functions:
(1 ) Book information input function
(2) Book information browsing function (output all book information)
(3) Book information sorting
(arranged in descending order of book number)
(4) Book information query
(by book number and author) Two ways to query book information)
(5) Book information statistics
(count the number of books that meet the conditions by the publisher, and display the book information)
(6) Book deletion (delete the book with the specified number)
(7) Book modification (modify the specified number (8) Save the book
information to the file (save the linked list or structure array data in the form of a file)
(9) Read the book information from the file (read the original saved file into the memory , to manage)

Source code download

Link: https://pan.baidu.com/s/11rCq12ovZUUH1rdOr3lAjg
Extraction code: 1111

Related Posts