int IsEmpty(Stack* stack) {. if (stack->top == -1) {. printf("堆栈空\n");. return 1;. } return 0;. } //入栈. void Push(Stack* stack, ...
確定! 回上一頁