專案2 建立鏈棧演算法庫

2021-07-05 19:16:46 字數 1605 閱讀 9163

問題及**:

1.標頭檔案:listack.h,包含定義鏈棧資料結構的**、巨集定義、要實現演算法的函式的宣告;

#ifndef listack_h_included

#define listack_h_included

typedef char elemtype;

typedef struct linknode

listack; //鏈棧型別定義

void initstack(listack *&s); //初始化棧

void destroystack(listack *&s); //銷毀棧

int stacklength(listack *s); //返回棧長度

bool stackempty(listack *s); //判斷棧是否為空

void push(listack *&s,elemtype e); //入棧

bool pop(listack *&s,elemtype &e); //出棧

bool gettop(listack *s,elemtype &e); //取棧頂元素

void dispstack(listack *s); //輸出棧中元素

#endif // listack_h_included

2.原始檔:listack.cpp,包含實現各種演算法的函式的定義

#include #include #include "listack.h"

void initstack(listack *&s) //初始化棧

void destroystack(listack *&s) //銷毀棧

free(s); //s指向尾結點,釋放其空間

}int stacklength(listack *s) //返回棧長度

return(i);

}bool stackempty(listack *s) //判斷棧是否為空

void push(listack *&s,elemtype e) //入棧

bool pop(listack *&s,elemtype &e) //出棧

bool gettop(listack *s,elemtype &e) //取棧頂元素

void dispstack(listack *s) //輸出棧中元素

printf("\n");

}

#include #include "listack.h"

int main()

printf("\n");

printf("(8)鏈棧為%s\n",(stackempty(s)?"空":"非空"));

printf("(9)釋放鏈棧\n");

destroystack(s);

return 0;

}

執行結果:

專案二 建立鏈棧演算法庫

問題及 2015,煙台大學計算機與控制工程學院 完成日期 2015年10月7日 問題描述 定義鏈棧儲存結構,實現其基本運算,並完成測試。輸入描述 無 結果輸出 資料元素 1 標頭檔案 ifndef listack h included define listack h included typede...

建立鏈棧演算法庫

問題描述 定義鏈棧儲存結構,實現其基本運算,並完成測試。輸入描述 若干資料。程式輸出 各個步驟的文字敘述及其資料的輸出。include includetypedef char elemtype typedef struct linknode listack 鏈棧型別定義 void initstack...

專案2 建立鏈串演算法庫

標頭檔案 ifndef listring h included define listring h included typedef struct snode listring void strassign listring s,char cstr 字串常量cstr賦給串s void strcopy...