數據結構4-利用棧的結構,將二進制數轉換爲十進制數

編寫一個程序,利用棧的結構,將二進制數轉換爲十進制數,代碼以下:git #include"stdio.h" #include"math.h" #define STACK_INIT_SIZE 20 #define STACKINCREMENT 10 typedef char ElemType; typedef struct{ ElemType *base; ElemType *top; in
相關文章
相關標籤/搜索