摘要: #include <stdio.h>#include <stdlib.h>typedef struct node{ int data; struct node* next;// 这个地方注意结构体变量的定义规则} Node, *PNode;Node* createLinklist(int length){ int i = 0; PNode pHeader = NULL; PNode pTail = NULL; PNode pTemp = NULL; printf("create\n"); pHeader = (PNode)malloc(sizeo.. 阅读全文
posted @ 2013-05-20 23:57 liutianming 阅读(540) 评论(0) 推荐(0)