数据结构学习--创建链表
摘要:
#include "stdio.h"#include "stdlib.h"struct pass{ int number; struct pass *next;};struct pass * createList(struct pass *head){ int i = 0; struct pas... 阅读全文
posted @ 2015-07-23 20:52 小二杰 阅读(113) 评论(0) 推荐(0) 编辑