第6周專案2 建立棧鏈演算法庫

2021-07-05 14:36:21 字數 1809 閱讀 9076

問題及**:

/* 

*檔名稱:cpp1.cpp

*完成日期:2023年10月05日

*版本號:v1.0

* *問題描述:定義鏈棧儲存結構,實現其基本運算,並完成測試。

標頭檔案head.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

原始檔1.cpp  :

#include #include #include "head.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");

}

測試函式main.cpp:

#include #include "head.h"

int main()

printf("\n");

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

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

destroystack(s);

return 0;

}

執行結果:

第6周專案2建立鏈棧演算法庫

問題及 1 main.cpp 檔名稱 專案1.cpp 完成日期 2015.10.9 問題描述 定義鏈棧儲存結構,實現其基本運算,並完成測試。輸入描述 無程式輸出 若干資料 include include listack.h int main printf n printf 8 鏈棧為 s n sta...

第6周 專案2 建立鏈棧演算法庫

1.標頭檔案 listack.h,包含定義鏈棧資料結構的 巨集定義 要實現演算法的函式的宣告 ifndef listack h included define listack h included typedef char elemtype typedef struct linknode lista...

第5周專案2 建立鏈棧演算法庫

檔名稱 zxl.cpp 完成日期 2016年9月25日 問題描述 定義鏈棧儲存結構,實現其基本運算,並完成測試。1 listack.h ifndef listack h included define listack h included typedef char elemtype typedef ...