摘要: #include <stdio.h>/*看本程序要有的最基本大知识1 typedef listnode *linklist(linklist是指向listnode的指针) linklist p,声明p是指向listnode的指针2 c语言实现引用大方法 int fun(int *x,int *y) void main() { int a, b; //要想改变a,b的值 fun(&a,&b); }*/typedef char datatype;typedef struct node{ datatype data; struct node *next;} li... 阅读全文
posted @ 2011-05-31 18:39 foreverlearn 阅读(232) 评论(0) 推荐(0) 编辑