摘要: /* list.h */#ifndef _LINKLIST_H#define _LINKLIST_Hstruct node { int data; struct node *next;};typedef struct node *ptr_to_node;typedef struct node *position;typedef struct node *list;list create_list();void insert(int x, list l, position p);void insert_to_head(int x, list l);void insert_to_tai... 阅读全文
posted @ 2014-03-04 11:21 ITtecman 阅读(754) 评论(0) 推荐(0) 编辑