- 1、本文档共4页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
数据结构线性表示例
1.线性表的建立、输出、插入
define ERROR 0
#define OK 1 struct STU{ char name[20];char stuno[10]; int age; int score; }stu[50]; struct LIST { struct STU stu[50]; int length; }L; int printlist(struct LIST L){ int i;printf(name stuno age score\n); for(i=0;iL.length;i++) printf(%s %s\t%d\t%d\n, L.stu[i].name, L.stu[i].stuno, L.stu[i].age, L.stu[i].score); printf(\n); }int listinsert(struct LIST *L,int i,struct STU e) { struct STU *p,*q; if (i1||iL-length+1) return ERROR; q=(L-stu[i-1]); for(p=L-stu[L-length-1];p=q;--p) *(p+1)=*p; *q=e; ++L-length; return OK; }/*ListInsert Before i */main() { struct STU e; L.length=0; strcpy(e.name,zmofun); strcpy(e.stuno,100001); e.age=80; e.score=1000; listinsert(L,1,e); printlist(L); printf(List length now is %d.\n\n,L.length);
strcpy(e.name,bobjin); strcpy(e.stuno,100002); e.age=80; e.score=1000; listinsert(L,1,e); printlist(L); printf(List length now is %d.\n\n,L.length); }
2.线性表的顺序存储结构
#define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 typedef struct{
ElemType *elem; //存储空间基址
int length; //当前长度
int listsize; //当前分配的存储容量以一数据元素存储长度为单位
}SqList;
status ListInsert(List *L,int i,ElemType e)
{//插入操作
struct STU *p,*q;
if (i1||iL-length+1) return ERROR;
q=(L-elem[i-1]);
for(p=L-elem[L-length-1];p=q;--p)
*(p+1)=*p;
*q=e;
++L-length;
return OK;
}/*ListInsert Before i */
自己再编写一个main()函数。
3.输入数列L={10,20,5,14,0},逆置后变为L={0,14,5,20,10};排序后输出:0,5,10,14,20。
#include stdio.h
main()
{
struct node
{
int data;
struct node *next;
}*head,*tail,*p,*q,*f,*min;
int x;
head tail=(struct node *)malloc(sizeof(struct node));
do
{
p=(struct node *)malloc(sizeof(struct node));
scanf(“%d”,p-data);
tail-next=p;tail=p;
}while(p-data);
tail-next=NULL;
p=head-next;
while(p)
{
printf(“%d”, p-data);
P=p-next;
}
q=head-next;head-next=NULL;
while(q)
{
f=q;q=q-next;
f-next=head-next;
head-next=f;
}
p=head-next;
while(p-next)
{
min=p;
q=p-next;
while(q)
{
if(q-datamin-data)min=q;
q=q-next;
}
if(p-datamin-
文档评论(0)