数据结构习题及答案

源代码在线查看: 5.34.c

软件大小: 52 K
上传用户: GUAIGUAICHENGTI
关键词: 数据结构
下载地址: 免注册下载 普通下载 VIP

相关代码

				5.34⑤ 试编写递归算法,逆转广义表中的数据元素。
				例如:将广义表
				    (a,((b,c),()),(((d),e),f))
				逆转为:
				    ((f,(e,(d))),((),(c,b)),a)。
				
				要求实现以下函数:
				void Reverse(GList &L);
				/* 递归逆转广义表L */
				
				广义表类型GList的定义:
				typedef enum {ATOM,LIST} ElemTag;
				typedef struct GLNode{
				   ElemTag tag;
				   union {
				      char atom;
				      struct { 
				         GLNode *hp, *tp;
				      } ptr;
				   }un;
				} *GList;
				void Reverse(GList &L)
				/* 递归逆转广义表L */
				{
				 GList q,p;
				 q=L; 
				 p=q->un.ptr.tp; 
				 if(!p&&q->tag) Reverse(L->un.ptr.hp);
				 while(p)
				  {q->un.ptr.tp=p->un.ptr.tp;
				   p->un.ptr.tp=L;
				   L=p;
				   p=q->un.ptr.tp;
				   if(L->tag)
				     Reverse(L->un.ptr.hp);
				  }     
				}
				
							

相关资源