数据结构 栈和队列的应用——经典题目分析

时间:2024-10-12 07:16:03
void multibase(int n,int b) { int i; Sqstack stack; InitStack(&stack); while (n != 0) { Push(&stack,n % b); // 入栈 n /= b; } while (!IsEmpty(&stack)) { Pop(&stack,&i); // 出栈 printf("%d",i); }

相关文章