数据结构--串--链式存储
摘要:
#include <stdio.h>struct node{ char ch; struct node *next;};/* 1.初始化单链表*/void init(struct Node **h){ *h = (struct node *)mallov(sizeof(struct node)); if(*h == NULL) { printf("空间申请失败...\n"); system("pause"); } (*h)->next = NULL: return; }/* 2.将x节点插入到链表后*/... 阅读全文
posted @ 2012-07-09 15:38 尼古拉斯豆 阅读(237) 评论(0) 推荐(0) 编辑