棧代碼

#include "stack.h" #include <stdio.h> #include <stdlib.h> #include <string.h> /* 初始化棧 */ stack_t* Init_stack(void) { stack_t* st = (stack_t *)malloc(sizeof(stack_t)); if(st == NULL) { printf
相關文章
相關標籤/搜索