摘要: /* * Queue サンプル * * 2004.12.08 * */ #include <stdio.h> #include <stdlib.h> typedef struct _LIST{ int data; struct _LIST *next; }LIST; LIST *NodeAlloc( 阅读全文
posted @ 2017-04-19 09:02 FightChicken 阅读(89) 评论(0) 推荐(0) 编辑