問題描述:定義鏈棧儲存結構,實現其基本運算,並完成測試。
輸入描述:若干資料。
程式輸出:各個步驟的文字敘述及其資料的輸出。
#include#includetypedef 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); //輸出棧中元素
#include"head.h"
void initstack(listack *&s)
void destroystack(listack *&s)
int stacklength(listack *s)
return i;
} bool stackempty(listack *s)
else return false;
} void push(listack *&s,elemtype e)
bool pop(listack *&s,elemtype &e)
l=s->next;
e=l->data;
s->next=l->next;
free(l);
return true;
} bool gettop(listack *s,elemtype &e)
e=s->next->data;
return true;
} void dispstack(listack *s)
printf("\n");
}
#include"head.h"
int main()
printf("\n");
printf("(8)鏈棧為%s\n",(stackempty(s)?"空":"非空"));
printf("(9)釋放鏈棧\n");
鏈棧的操作。
棧的有些地方是基於鍊錶的知識,所以只有夯實基礎,才能更上一層樓。
專案二 建立鏈棧演算法庫
問題及 2015,煙台大學計算機與控制工程學院 完成日期 2015年10月7日 問題描述 定義鏈棧儲存結構,實現其基本運算,並完成測試。輸入描述 無 結果輸出 資料元素 1 標頭檔案 ifndef listack h included define listack h included typede...
專案2 建立鏈棧演算法庫
問題及 1.標頭檔案 listack.h,包含定義鏈棧資料結構的 巨集定義 要實現演算法的函式的宣告 ifndef listack h included define listack h included typedef char elemtype typedef struct linknode l...
建立鏈棧演算法庫「程式設計題」
問題描述 定義鏈棧儲存結構,實現其基本運算,並完成測試 輸入描述 無 輸出描述 輸出棧長度 輸出從棧頂到棧底元素 並輸出出棧序列 view plaincopy ifndeflistack h included definelistack h included typedefcharelemtype ...