数据结构面试葵花宝典

dawei7818027 12 0 PDF 2020-08-29 19:08:46

typedef struct Element { struct Element *next; void *data; } Element; bool push( Element **stack, void *data); bool pop( Element **stack, void **data); bool createStack(Element **stack); bool deleteStack(Element **stack); bool createStack(Element **stack){ *stack = NULL; return true; } bool push( El

用户评论
请输入评论内容
评分:
暂无评论