随笔 - 684  文章 - 0  评论 - 156  阅读 - 399万
01 2013 档案
教务处管理系统(数据结构的简单应用)
摘要:简单的数据结构应用,不多说,看程序!!!哈!!!希望对你能有帮助!!!#include<stdio.h>#include<iostream>#include<stdlib.h>#include<malloc.h>#include<algorithm>using namespace std;#define LEN sizeof(struct Worker)struct Worker{char name[20];//姓名!char department[20];//单位char sex;//性别!int age;//年龄!long tel 阅读全文
posted @ 2013-01-25 21:06 @ 小浩 阅读(1773) 评论(6) 推荐(0) 编辑
数据链式存储结构的简单应用 例子
摘要:数据结构中链式栈的简单应用例子:(亲供参考)#include<iostream>#include<math.h>#include<stdio.h>using namespace std;struct Student{int data;struct Student *next;};int main(){ struct Student *head,*p; head=p=(struct Student *)malloc(sizeof(struct Student)); p->next=NULL; int n; printf("请输入你要输入数据的个 阅读全文
posted @ 2013-01-25 13:29 @ 小浩 阅读(670) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示