【数据结构_链表_List_0961】进制转换
容我说一句链表貌似把这么简单的东西复杂化了很多;#include#includetypedef struct { int data[50]; int top;}SqStack;void initstack(SqStack *&s){ s=(SqStack *)malloc(sizeof(SqStack)); s->top=-1;}int