第六週プロジェクト一~~~順序スタックアルゴリズムライブラリの構築

4725 ワード

/*     
 *Copyright(c)2015,         
 *All right reserved.
 *    :      .cpp
 *  :  
 *    ;2015 10 5 
 *   ;v1.0
 *
 *    :   : 
  1、   sqstack.h                     。           :

void InitStack(SqStack *&s);    //    
void DestroyStack(SqStack *&s);  //   
bool StackEmpty(SqStack *s);     //     
int StackLength(SqStack *s);  //        ——   
bool Push(SqStack *&s,ElemType e); //  
bool Pop(SqStack *&s,ElemType &e); //  
bool GetTop(SqStack *s,ElemType &e); //       
void DispStack(SqStack *s);  //   1
2、 sqstack.cpp        
3、 main       ,      : 
(1)    s 
(2)  s      
(3)      a,b,c,d,e 
(4)  s      
(5)      
(6)           
(7)  ,        
(8)  s      
(9)    

 

 *    :   
 *    :    
*/
//main.cpp

#include <stdio.h>
#include <malloc.h>

#define MaxSize 100
typedef char ElemType;
typedef struct
{
    ElemType data[MaxSize];
    int top;                //   
} SqStack;                  //       

void InitStack(SqStack *&s);    //    
void DestroyStack(SqStack *&s);  //   
bool StackEmpty(SqStack *s);     //     
int StackLength(SqStack *s);  //        ——   
bool Push(SqStack *&s,ElemType e); //  
bool Pop(SqStack *&s,ElemType &e); //  
bool GetTop(SqStack *s,ElemType &e); //       
void DispStack(SqStack *s);  //   



int main()
{
    ElemType e;
    SqStack *s;
    printf("(1)    s
"); InitStack(s); printf("(2) %s
",(StackEmpty(s)?" ":" ")); printf("(3) a,b,c,d,e
"); Push(s,'a'); Push(s,'b'); Push(s,'c'); Push(s,'d'); Push(s,'e'); printf("(4) %s
",(StackEmpty(s)?" ":" ")); printf("(5) :%d
",StackLength(s)); printf("(6) :");DispStack(s); printf("(7) :"); while (!StackEmpty(s)) { Pop(s,e); printf("%c ",e); } printf("
"); printf("(8) %s
",(StackEmpty(s)?" ":" ")); printf("(9)
"); DestroyStack(s); return 0; } //sqstack.cpp #include <stdio.h> #include <malloc.h> #include "sqstack.h" void InitStack(SqStack *&s) { s=(SqStack *)malloc(sizeof(SqStack)); s->top=-1; } void DestroyStack(SqStack *&s) { free(s); } int StackLength(SqStack *s) // —— { return(s->top+1); } bool StackEmpty(SqStack *s) { return(s->top==-1); } bool Push(SqStack *&s,ElemType e) { if (s->top==MaxSize-1) // , return false; s->top++; s->data[s->top]=e; return true; } bool Pop(SqStack *&s,ElemType &e) { if (s->top==-1) // , return false; e=s->data[s->top]; s->top--; return true; } bool GetTop(SqStack *s,ElemType &e) { if (s->top==-1) // , return false; e=s->data[s->top]; return true; } void DispStack(SqStack *s) // { int i; for (i=s->top;i>=0;i--) printf("%c ",s->data[i]); printf("
"); } //sqstack.h #define MaxSize 100 typedef char ElemType; typedef struct { ElemType data[MaxSize]; int top; // } SqStack; // void InitStack(SqStack *&s); // void DestroyStack(SqStack *&s); // bool StackEmpty(SqStack *s); // int StackLength(SqStack *s); // —— bool Push(SqStack *&s,ElemType e); // bool Pop(SqStack *&s,ElemType &e); // bool GetTop(SqStack *s,ElemType &e); // void DispStack(SqStack *s); //

実行結果
知識ポイントのまとめ
スタックはまた最も重要なデータ構造の一つであり、用途は非常に広く、その特有の特徴もあるので、スタックのアルゴリズムライブラリを構築することも極めて重要なプログラミングツールである.
学習の心得.
アルゴリズムライブラリを構築することで,今後の符号化過程で主関数を直接修正して自分の予想結果を達成することができる.