c程式課程設計(學生資訊管理系統)

2021-08-21 06:07:14 字數 1228 閱讀 2227

最近學校在c語言程式設計,選了個學生管理系統,花乙個小時寫了一寫,有的地方寫的不好見諒哈~~~

#include #include #include typedef struct studentstudent;

student * add(student * root,student * tem)

file * f=fopen("d:\\student\\student.txt","wb");

fwrite(root,sizeof(student),1,f);

fclose(f);

} else if(root->num>tem->num)

root->left=add(root->left,tem);

else if(root->numnum)

root->right=add(root->right,tem);

return root;

}student * search_num(student * root,long int num)

if(root==null)

printf("不存在該學生\n");

return root;

}student * search_name(student * root,char * name)

else

printf("不存在該學生\n");

return root;

}student * updata(student * root,student * tem,long int num)

else

printf("不存在該學生\n");

return root;

}student * findmin(student* root)

return root;

}student * deleted(student * root,long int num)

else

root=(root->left!=null)? root->left:root->right;

return root;

}void printtree(student * root)

}void print(student * root)

}student * input()

student * menu(student * root)

return root;

}int main()

課程設計 學生資訊管理系統

煙台大學計算機與控制工程學院 檔名稱 lulu.cpp 完成日期 2015年12月31日 版本號 v1.o 問題描述 學生資訊管理系統 include include include include include xinxi.h using namespace std int main head1...

課程設計 學生資訊管理系統設計

煙台大學計算機與控制工程學院 題目 學生資訊管理系統設計 ifndef head h included define head h included using namespace std typedef struct student elemtype class list 定義結構體,第乙個結構體...

課程設計 大學生資訊管理系統

下面是解答 完成80 了,程式都能執行,還有一點功能沒有加進去,自己加吧,另外寫的比較匆忙,肯定有不完善的地方,希望完善哦!include include include include include typedef struct students student void menu void s...