摘要: 当前学习数据结构内容,由于后面常常需要用到栈和队列,为方便后面学习,在此做个记录。 if(s->_top == s->_end) { size_t capacity = s->_end > 0? s->_end*2 : 4; DataType* p = (DataType*)realloc(s->_ 阅读全文
posted @ 2018-01-09 16:44 tp_16b 阅读(407) 评论(0) 推荐(0) 编辑