項目名稱:圖書管理系統
項目作者:甯哥
開發工具:Visual Studio 2017
程式設計語言:C語言
意義:連結清單、檔案存儲、資料加解密、多檔案開發綜合應用
功能描述:
1:增、删、改、查
2:資料加解密
3:檔案資料庫,帶記憶功能
4:初始化
5:搜尋
檢查時間:2017年8月6日
結構體原型:
struct _book
{
char bid[10];//編号
char name[30];//書名
int page;//頁數
int price;//價格
struct _book *next; //下一個節點的首位址
};
typedef struct _book BOOK;//簡化結構體聲明
源代碼截圖:
效果截圖:
存儲資料截圖:
本文轉自 ningcaichen66 51CTO部落格,原文連結:http://blog.51cto.com/ningcaichen66/1969642,如需轉載請自行聯系原作者