問題及**
/*
*煙台大學計控學院
*作 者:郗傳秀
*完成日期:2023年9月29日
*問題描述【專案 - 數制轉換】 把十進位制的整數轉換為任一進製數輸出。請利用棧設計演算法,並實現程式。
(1)sqstack.h
[cpp] view plain copy
#ifndef sqstack_h_included
#define sqstack_h_included
#define maxsize 100
typedef int elemtype;
typedef struct
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); //輸出棧
void multibaseoutput (int number,int base);
#endif // sqstack_h_included
(2)sqstack.cpp
[cpp] view plain copy
#include"sqstack.h"
#include#includevoid initstack(sqstack *&s)
void destroystack(sqstack *&s)
int stacklength(sqstack *s) //返回棧中元素個數——棧長度
bool stackempty(sqstack *s)
bool push(sqstack *&s,elemtype e)
bool pop(sqstack *&s,elemtype &e)
bool gettop(sqstack *s,elemtype &e)
void dispstack(sqstack *s) //輸出棧
void multibaseoutput (int number,int base)
while(!stackempty(s))//棧非空時退棧輸出
} (3)main.cpp
[cpp] view plain copy
#include"sqstack.h"
#includeint main()
執行結果
第六周專案4數制轉換
檔名稱 第六周專案4.cpp 作 者 彭子竹 完成日期 2015年10月23日 版 本 號 v1.0 問題描述 把十進位制的整數轉換為二至九之間的任一進製數輸出。請利用棧設計演算法,並實現程式。輸入描述 數字與進製 程式輸出 輸出轉換結果 main函式 include sqstack.h void ...
第六周專案4 數制轉換
檔名稱 idea.cpp 完成日期 2015年11月20日 define maxsize 100 typedef int elemtype typedef struct sqstack 順序棧型別定義 void initstack sqstack s 初始化棧 void destroystack s...
第六周 專案4 數制的轉換
2015,煙台大學計算機控制工程學院 檔名稱 dlinklist.cpp 完成日期 2015年10月12日 問題描述 把十進位制的整數轉換成二至九之間的任意進製數輸出 問題要求 利用棧設計演算法,並實現程式 一系列的餘數的逆序就是轉換結果。1 建立標頭檔案 ifndef listack h incl...