求助 利用链表结构实现工资管理
利用链表结构实现工资管理,通过这个程序掌握C语言灵活的数据类型以及表示数据和存储数据的方法,完成输入、显示、删除、查找、插入、保存、读入、计算工资、排序等功能。
typedef struct z1
{
char no[11]; /*职工编号*/
char name[15]; /*职工姓名*/
float jbgz; /*基本工资*/
float koukuan; /*扣款*/
float yfgz; /*应发工资*/
float shuijin; /*税金*/
float sfgz; /*实发工资*/
struct z1 *next; /*指向后续结点的指针*/
} Salary; /*定义结构体类型*/
题目要求要有一些界面的选择操作,如:
menu_select()主菜单函数实现界面设计,具体模型如下:
**************************************************
Enter record
List the file
Search record on name
Delete a record
Add record
Save the file
Load the file
Display record on order
Sort to make new file
Quick seek record
Copy the file to new file
Quit
******************************************************
Enter you choice(0….11):