摘要: #include <stdio.h>#include <stdlib.h>typedef struct _list{int data;struct _list *next;}list,*plist;plist create_list(int *a,int len){plist head=NULL;plist ptr=NULL;plist newnode=NULL;head=... 阅读全文
posted @ 2010-10-28 12:26 linyilong 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 是我理解不够还是记忆力不好?有段时间连冒泡排序的原理都忘记了,后来网上查才知道.... 阅读全文
posted @ 2010-10-28 12:25 linyilong 阅读(178) 评论(0) 推荐(0) 编辑