45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:c++数据结构课程设计方法介绍

c++数据结构课程设计方法介绍

2016-09-06 08:10:52 来源:www.45fan.com 【

c++数据结构课程设计方法介绍

#include #include #include #define MAX_LENGTH 10000 /*================== STACK ===================*/ typedef struct{ char data[MAX_LENGTH]; int top; }STACK; void init_stack(STACK& S){ S.top=0; } void push(STACK& S, char x) { S.data[S.top++] = x; } int stack_empty(STACK& S){ return (S.top==0); } char pop(STACK& S){ if(stack_empty(S)){ printf("/nERROR! Stack is empty!/n"); exit(1); } return S.data[--S.top]; } /*================== QUEUE ===================*/ typedef struct{ char data[MAX_LENGTH]; int head,tail; }QUEUE; void init_queue(QUEUE& Q){ Q.head=Q.tail=0; } void enqueue(QUEUE& Q,char x){ Q.data[Q.tail++] = x; if(Q.tail > MAX_LENGTH) { printf("/nERROR! Queue too big!/n"); exit(1); } } char dequeue(QUEUE& Q){ return (Q.data[Q.head++]); } int queue_empty(QUEUE& Q){ return (Q.head == Q.tail); } /*===========================================*/ void ReadInput(char string[]){ scanf("%s",string); } void Translate(char string[]){ char RULE_B[] = "tAdA"; char RULE_A[] = "sae"; STACK stack; QUEUE queue; char c,s; int i; init_stack(stack); for(i=strlen(string)-1;i>=0;i--) push(stack, string[i]); while(!stack_empty(stack)){ c=pop(stack); if(c>='a' && c<='z') printf("%c",c); else if(c=='B') for(i=3;i>=0;i--) push(stack, RULE_B[i]); else if(c=='A') for(i=2; i>=0; i--) push(stack, RULE_A[i]); else if(c=='('){ s=c=pop(stack); if(c==')') continue; init_queue(queue); enqueue(queue, s); while((c=pop(stack))!=')'){ enqueue(queue, c); enqueue(queue, s); } while(!queue_empty(queue)) push(stack, dequeue(queue)); } else printf("%c", c); } printf("/n"); } void main(){ char string[MAX_LENGTH]; ReadInput(string); Translate(string); }
 

本文地址:http://www.45fan.com/a/question/72995.html
Tags: C++ 课程 数据结构
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部