摘要: View Code #include <stdio.h>#include <stdlib.h>typedef struct node{ int data; struct node* next;}Link;int a[10]={12,34,503,2,12,5,74,7,112,6};Link* CreateLink(){ int i; Link *head,*tail; head=(Link* )malloc(sizeof(Link)); head->data=0; tail=head; Link* p; for (i=0; i<10; +... 阅读全文
posted @ 2012-05-20 00:31 徐露 阅读(238) 评论(0) 推荐(0) 编辑