资源简介
数据结构做的通讯录,包含全部课程设计报告和完整程序
代码片段和文件信息
#include
#include
#include
#include
#define NULL 0
#define LEN sizeof(LNode)
int length;
int seat;
typedef struct LNode{
int number;
int telenum;
char name[20];
char addr[30];
struct LNode *next;
}LNode*linkList;
//用于通讯录结点
void printList(linkList L){ // 打印头结点地址为L的通讯录
printf(“\n ---------------------------------------\n“);
printf(“ Number Name TelephoneNo Addr.\n“);
printf(“ -----------------------------------------\n“);
linkList p=L;
int n=1;
if(L->next==NULL) printf(“该链表中没有元素\n“);
else
while(p->next !=NULL){
printf(“ %d %d“np->next->number);
printf(“ %s %d %s \n“p->next->namep->next->telenump->next->addr);
p=p->next;
n++;
}
printf(“ -----------------------------------------\n“)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 7357 2017-06-26 14:23 txl\txl\txl.c
文件 3365 2017-06-26 13:23 txl\txl\txl.dsp
文件 512 2017-06-26 14:52 txl\txl\txl.dsw
文件 33792 2017-06-26 14:52 txl\txl\txl.ncb
文件 48640 2017-06-26 14:52 txl\txl\txl.opt
文件 1126 2017-06-26 14:23 txl\txl\txl.plg
文件 200769 2017-06-26 14:23 txl\txl\Debug\txl.exe
文件 222804 2017-06-26 14:23 txl\txl\Debug\txl.ilk
文件 36157 2017-06-26 14:23 txl\txl\Debug\txl.obj
文件 3560904 2017-06-26 13:23 txl\txl\Debug\txl.pch
文件 525312 2017-06-26 14:23 txl\txl\Debug\txl.pdb
文件 148480 2017-06-26 14:48 txl\txl\Debug\vc60.idb
文件 77824 2017-06-26 14:23 txl\txl\Debug\vc60.pdb
目录 0 2017-06-26 14:23 txl\txl\Debug
目录 0 2017-06-26 14:52 txl\txl
目录 0 2017-06-27 13:30 txl
文件 154082 2017-07-08 13:38 通讯录数据结构报告 - 副本.doc
----------- --------- ---------- ----- ----
5021124 17
相关资源
- 北京科技大学计算机组成原理和数据
- 数据结构算法课堂手写笔记整理
- 数据结构1800题含答案
- 大话数据结构原书 + 源代码
- 《常用数据结构和算法》
- PIC单片机程序全集
- 在可变分区管理方式下采用最先适应
- 马的遍历数据结构
- 数据结构 图书管理系统课程设计代码
- 数据结构教程第2版李春葆编的上机实
- LUT算法与数据结构--递归替换问题和兰
- 山东大学软件学院数据结构实验报告
- 神经网络PID控制源程序
- 数据结构 停车场管理 实验报告
- 数据结构图的遍历的图形演示课程设
- 数据结构课程设计舞伴问题
- 删除顺序表中的元素
- 专升本历年数据结构真题
- 数据结构(全集珍藏版)
- 数据结构试题文件,名校近年的考题
- 数据结构课程设计人口信息处理
- EXE程序反编译器,将EXE程序还原为代
- 数据结构课程设计学校超市选址问题
- 拓扑排序数据结构课程设计报告图形
- 数据结构设计性实验----表达式类型的
- 数据结构课程设计 活期储蓄帐目管理
- 多任务下的数据结构与算法配书光盘
- 数据结构——停车场管理系统
- 数据结构课程设计----集合的并、交和
- 数据结构课程设计_一元稀疏多项式计
评论
共有 条评论