c语言栈队列链表算法代码实现.docxVIP

  • 3
  • 0
  • 约5.33千字
  • 约 8页
  • 2020-07-07 发布于四川
  • 举报
#includestdio.h #define null 0 #define len sizeof(struct lnode) int n; struct lnode *creatlist(); struct lnode *listinsert(); struct lnode *listdel(); struct lnode{ int a; struct lnode *next; }; struct lnode *head; void main() { int n; do{ printf(=====链式表练习=====\n); printf(

文档评论(0)

1亿VIP精品文档

相关文档