习题三和上机答案.docx

上传人:b****5 文档编号:28217916 上传时间:2023-07-09 格式:DOCX 页数:19 大小:19.62KB
下载 相关 举报
习题三和上机答案.docx_第1页
第1页 / 共19页
习题三和上机答案.docx_第2页
第2页 / 共19页
习题三和上机答案.docx_第3页
第3页 / 共19页
习题三和上机答案.docx_第4页
第4页 / 共19页
习题三和上机答案.docx_第5页
第5页 / 共19页
点击查看更多>>
下载资源
资源描述

习题三和上机答案.docx

《习题三和上机答案.docx》由会员分享,可在线阅读,更多相关《习题三和上机答案.docx(19页珍藏版)》请在冰豆网上搜索。

习题三和上机答案.docx

习题三和上机答案

习题三

3.1设将整数a,b,c,d依次进栈,但只要出栈时栈非空,则可将出栈操作按任何次序夹入其中,请回答下述问题:

  

(1)若执行以下操作序列Push(a),Pop(),Push(b),Push(c),Pop(),Pop(),Push(d),Pop(),则出

栈的数字序列为何(这里Push(i)表示i进栈,Pop()表示出栈)?

 

  

(2)能否得到出栈序列adbc和adcb并说明为什么不能得到或者如何得到。

 

  (3)请分析a,b,c,d的所有排列中,哪些序列是可以通过相应的入出栈操作得到的。

解:

(1)acbd

(2)执行以下操作序列Push(a),Pop(),Push(b),Push(c),Push(d),Pop(),Pop(),Pop()就可以得到adcb

栈的特点是“后进先出”,所以不可能得到adbc

(3)Push(a),Push(b),Push(c),Push(d),Pop(),Pop(),Pop(),Pop()可以得到dcba

Push(a),Push(b),Push(c),Pop(),Pop(),Pop(),Push(d),Pop()可以得到cbad

Push(a),Push(b),Pop(),Pop(),Push(c),Pop(),Push(d),Pop()可以得到bacd

Push(a),Push(b),Pop(),Pop(),Push(c),Push(d),Pop(),Pop()可以得到badc

Push(a),Pop(),Push(b),Push(c),Push(d),Pop(),Pop(),Pop()可以得到adcb

Push(a),Pop(),Push(b),Push(c),Pop(),Pop(),Push(d),Pop()可以得到acbd

Push(a),Pop(),Push(b),Pop(),Push(c),Pop(),Push(d),Pop()可以得到abcd

Push(a),Pop(),Push(b),Pop(),Push(c),Push(d),Pop(),Pop()可以得到abdc

⒊2分别借助顺序栈和链栈,将单链表倒置。

解:

顺序表:

#include"stdio.h"

 #defineDataTypechar

 #definesqstack_maxsize40

 typedefstructsqstack

 {DataTypedata[sqstack_maxsize];

  inttop;

 }SqStackTp;

 intInitStack(SqStackTp*sq)

 {sq->top=0;return

(1);}

 intPush(SqStackTp*sq,DataTypex)

 {

  if(sq->top==sqstack_maxsize-1)

  {printf("栈满");return(0);}

  else

  {sq->top++;sq->data[sq->top]=x;return

(1);}

 }

 intPop(SqStackTp*sq,DataType*x)

 {

  if(sq->top==0){printf("下溢");return(0);}

  else{*x=sq->data[sq->top];sq->top--;return

(1);}

 }

 intEmptyStack(SqStackTp*sq)

 {

  if(sq->top==0)return

(1);

  elsereturn(0);

 }

 /*主函数*/

 voidmain()

 {SqStackTpsq;

  DataTypech;

  InitStack(&sq);

  for(ch='A';ch<='A'+12;ch++)

  {Push(&sq,ch);printf("%c",ch);}

  printf("\n");

  while(!

EmptyStack(&sq))

  {Pop(&sq,&ch);printf("%c",ch);} 

  printf("\n");

 }

链表:

#include"stdio.h"

 #definedatatypechar

 #definesizesizeof(structnode)

 typedefstructnode

 {datatypedata;

  structnode*next;

 }*LStackTp;

 voidInitStack(LStackTp*ls)

 {

  *ls=NULL;

 }

 voidPush(LStackTp*ls,datatypex)

 {LStackTpp;

  p=(LStackTp)malloc(size); 

  p->data=x; 

  p->next=*ls;

  *ls=p;

 }

 intPop(LStackTp*ls,datatype*x)

 {LStackTpp;

  if((*ls)!

=NULL)

  {p=*ls;*x=p->data;*ls=(*ls)->next;

   free(p);return

(1);

  }elsereturn(0);

 }

 intEmptyStack(LStackTpls) 

 {

  if(ls==NULL)return

(1);

  elsereturn(0);

 }

 voidmain()

 {LStackTpls;

  datatypech;

  InitStack(ls);

  for(ch='A';ch<='A'+12;ch++)

  {Push(&ls,ch);printf("%c",ls->data);}

  printf("\n");

  while(!

EmptyStack(ls))

  {Pop(&ls,&ch);printf("%c",ch);}

  printf("\n");

 }

⒊3有两个栈A,B这两个栈中分别存储这一个升序数列,现要求编写算法把这两个栈中的数合成一个升序队列

解:

linkmerge(linka,linkb)

{linkh,s,m,n,t;

h=(cnode*)malloc(sizeof(cnode));

h->next=NULL;

s=h;

m=a;

n=b;

while(m->next&&n->next)

{if(m->next->datanext->data)

{t=m->next;

m->next=t->next;

t->next=s->next;

s->next=t;

s=t;

}

elseif(m->next->data==n->next->data)

{t=m->next;

m->next=t->next;

n=n->next;

t->next=s->next;

s->next=t;

s=t;

}

else

{t=n->next;

n->next=t->next;

t->next=s->next;

s->next=t;

s=t;

}

}

while(m->next)

{t=m->next;

m->next=t->next;

t->next=s->next;

s->next=t;

s=t;

}

while(n->next)

{t=n->next;

n->next=t->next;

t->next=s->next;

s->next=t;

s=t;

}

free(m);

free(n);

returnh;

}

⒊4设两个栈共享一个数组空间,其类型定义见⒊⒈2节,试写出两个栈公用的读栈顶元算法elemtptop_dustack(dustacktpds,p;inti);进栈操作算法voidpush_dustack(dustacktpds,p;inti,elemtpx);及出栈算法elemtppop_dustack(dustacktpds,p;inti)。

其中i的取值是1或2,用以指示栈号。

解:

读栈顶元函数

elemtptop_sqstack(s:

sqstacktp){

if(s.top==0)

return(null);

else

return(s.elem[s.top]);

}

进栈操作

voidpush_sqstack(sqstacktps,elemtpx){

若栈s未满,将元素x压入栈中;否则,栈的状态不变并给出出错信息

if(s.top==maxsize)

printf(“Overflow”);

else{

s.top++;栈顶指针加1

s.elem[s.top]=xx进栈

}

}

出栈函数

elemtppop_sqstack(sqstacktps){

若栈s不空,则删去栈顶元素并返回元素值,否则返回空元素NULL

if(s.top==0)

return(null);

else{

s.top--;栈顶指针减1

teturn(s.elem[s.top+1]);返回原栈顶元素值

}

}

⒊5假设以数组sequ(0..m-1)存放循环队列元素,同时设变量rear和quelen分别指示循环队列中队尾元素和内含元素的个数。

试给出此循环队列的队满条件,并写出相应的入队列和出队列的算法(在出队列的算法中要返回队头元素)。

解:

队满的条件

(sq.rear+1)MODmaxsize=sq.front

入队列操作

voiden_cqueue(cqueuetpcq,elemtpx){

若循环队列cq未满,插入x为新的队尾元素;否则队列状态不变并给出错误信息

if((cq.rear+1)MODmaxsize==cq.front)

printf(“Overflow”);

else{

cq.rear=(cq.rear+1)MODmaxsize;

cq.elem[cq.rear]=x

}

}

出队列函数

elemtpdl_cqueue(VARcq:

cqueuetp){

若循环队列cq不空,则删去队头元素并返回元素值;否则返回空元素NULL

if(cq.front==cq.rear)

return(NULL);

else{

cq.front=(cq.front+1)MODmaxsize;

return(cq.elem[cq.front]);

}

}

⒊6假设以带头结点的环形链表表示队列,并且只设一个指针指向队尾元素结点(注意不设头指针),试编写相应的初始化队列、入队列、出队列的算法。

解:

初始化:

voidinit_lqueue(lqueuetplq){

设置一个空的链队列lq

new(lq.front);

lq.front->next:

=NIL;

lq.rear=lq.front;

}

入队列操作:

PROCen_lqueue(VARlq:

lqueuetp;x:

elemtp);

在链队列lq中,插入x为新的队尾元素

BEGIN

new(s);s↑.data:

=x;

s↑.next:

=NIL;lq.rear↑.next:

=s;

lq.rear:

=s

ENDP;en_lqueue

出队列操作:

elemtpdl_lqueue(lqueuetplq){

若链队列lq不空,则删去队头元素并返回元素值;否则返回空元素NULL

if(lq.front==lq.rear)

return(null);

else{

p=lq.front->next;

lq.front->next=p->next;

IF(p->next==NIL)

lq.rear=lq.front;

当链队列中仅有一个结点时,出队时还需修改尾指针

x=p->data;

dispose(p);

return(x)

}

}

第三章上机内容

1、设单链表中存放n个字符,设计一个算法,使用栈判断该字符串是否中心对称,如abccba即为中心对称字符串.(根据题目填空完善程序)

提示:

先用create()函数从用户输入的字符串创建相应的单链表,然后调用bj()函数判断是否为中心对称字符串。

在bj()函数中先将字符串进栈,然后将栈中的字符逐个与单链表中字符进行比较。

#include

#include

#defineMaxLen100

typedefstructnode

{

chardata;

structnode*next;

}cnode;

cnode*create(chars[])

{

intI=0;

cnode*h,*p,*r;

while(s[I]!

=’\0’)

{

p=(cnode*)malloc(sizeof(cnode));

p->data=s[I];p->next=NULL;

if(I==0)

{

h=p;

r=p;/*r始终指向最后一个结点*/

}

else

{

r->next=p;r=p;

}

I++;

}

returnh;

}

intjudge(cnode*h)

{

charst[MaxLen];

inttop=0;

cnode*p=h;

while(p!

=NULL)

{

st[top]=p->data;

top++;

p=p->next;

}

p=h;

while(p!

=NULL)

{

top--;

if(p->data==st[top])

p=p->next;

else

break;

}

if(p==NULL)

return1;

else

return0;

}

voidmain()

{

charstr[maxlen];

cnode*h;

printf(“输入一个字符串:

”);

scanf(“%c”,str);

h=create(str);

if(judge(h)==1)

printf(“str是中心对称字符串\n”);

else

printf(“str不是中心对称字符串\n”);

}

输入一个字符串:

abccba

输出:

str是中心对称字符串

2、设一个算术表达式中包含圆括号、方括号和花括号三种类型的括号,编写一个算法判断其中的括号是否匹配。

提示:

本题使用一个运算符栈st,当遇到的‘(’、‘[’、或‘{’时进栈,当遇到‘}’、‘]’、‘)’时判断栈顶是否为相应的括号,若是退栈继续执行;否则算法结束。

解:

#include"stdio.h"

#include"string.h"

#defineNULL0

typedefstructlist

{charstr;

structlist*next;

}list;

voidpush(char,list*);

intpop(char,list*);

voiddeal(char*str);

main(void)

{charstr[20];

printf("\nInputasuanshi:

\n");

gets(str);

deal(str);

printf("Right!

");

getch();

return0;

}

voiddeal(char*str)

{list*L;

L=(list*)malloc(sizeof(list));

if(!

L)

{printf("Error!

");

exit(-2);

}

L->next=NULL;

while(*str)

{if(*str=='('||*str=='['||*str=='{')

push(*str,L);

else

if(*str==')'||*str==']'||*str=='}')

if(pop(*str,L))

{puts("Error!

Checkit.");

puts("PressEntertoexit...");

getchar();exit(-2);

}

str++;

}

if(L->next)

{puts("Error!

Checkit.");

puts("Pressanykeytoexit...");

getchar();exit(-2);

}

}

voidpush(charc,list*L)

{list*p;

p=(list*)malloc(sizeof(list));

if(!

p)

{printf("Error!

");

exit(-2);

}

p->str=c;

p->next=L->next;

L->next=p;

}

#defineCHECK(s)if(L->next->str==s){p=L->next;L->next=p->next;free(p);return0;}

intpop(charc,list*L)

{list*p;

if(L->next==NULL)return1;

switch(c)

{case')':

CHECK('(')break;

case']':

CHECK('[')break;

case'}':

CHECK('{')break;

}

return1;

}_

3、设计一个程序,演示用算符优先法对算术表达式求值的过程。

基本要求:

以字符序列的形式从终端输入语法正确的、不含变量的整数表达式。

利用教科书表3.1给出的算符优先关系,实现对算术四则混合运算表达式的求值,并仿照教科书的例3_1演示在求值中运算符栈、运算数栈、输入字符和主要操作的变化过程。

测试数据:

3*(7-2)

解:

#include"stdio.h"

#include"string.h"

#defineNULL0

typedefstructlist{

intinfor;

structlist*next;

}list;

intoperand(intd[][8],char*s);

list*creat(void);

list*creat(void);

voidpush(list*,int);

intpop(list*);

intoperate(int,int,int);

intcheck(int,int,intd[][8]);

main(void)

{intd[8][8]={-2,43,45,42,47,40,41,35,

43,1,1,-1,-1,-1,1,1,

45,1,1,-1,-1,-1,1,1,

42,1,1,1,1,-1,1,1,

47,1,1,1,1,-1,1,1,

40,-1,-1,-1,-1,-1,0,-2,

41,1,1,1,1,-2,1,1,

35,-1,-1,-1,-1,-1,-2,0};

chara[20],*s=a;

printf("\nInputtheexpression\n");

gets(s);

while(*s!

='\0')s++;

*s='#';

printf("Theresultis%d.\n",operand(d,a));

getch();

return0;

}

intoperand(intd[8][8],char*s)

{list*tr,*nd;

intc,a,b,theta;

tr=creat();

nd=creat();

push(tr,'#');

c=*s++;

while(c!

='#'||tr->next->infor!

='#')

{if(c>='0'&&c<='9')

{c=c-'0';push(nd,c);c=*s++;}

else

switch(check(tr->next->infor,c,d))

{case-1:

push(tr,c);c=*s++;break;

case0:

pop(tr);c=*s++;break;

case1:

theta=pop(tr);

b=pop(nd);

a=pop(nd);

push(nd,operate(a,b,theta));

break;

}

}

returnnd->next->infor;

}

list*creat(void)

{list*p;

p=(list*)malloc(sizeof(list));

if(!

p)exit(-2);

p->next=NULL;

returnp;

}

voidpush(list*L,intc)

{list*p;

p=(list*)malloc(sizeof(list));

if(!

p)exit(-2);

p->infor=c;

p->next=L->next;L->next=p;

}

intpop(list*L)

{list*p;

intc;

p=L->next;

c=p->infor;

L->next=p->next;

free(p);

returnc;

}

intoperate(inta,intb,inttheta)

{intresult;

switch(theta)

{case'+':

result=a+b;break;

case'-':

result=a-b;break;

case'*':

result=a*b;break;

case'/':

result=a/b;break;

}

returnresult;

}

intcheck(inttop,intc,intd[8][8])

{inti,j;

for(i=1;i<8;i++)

{if(top==d[i][0])

for(j=1;j<8;j++)

if(c==d[0][j])

if(d[i][j]!

=-2)returnd[i][j];

else{printf("Error!

");getch

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 党团工作 > 入党转正申请

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1