摘要: 大牛无视,小白代码。。。又是无聊的上机课......#include <iostream>#include <cstdio>#include <cstdlib>using namespace std;typedef struct node{ int data; struct node * next;}node, *linklist;//顺序建立链表linklist creat(linklist &l , int n){ l = (linklist)malloc(sizeof(node)); linklist p, tail; tail = l; fo 阅读全文
posted @ 2011-09-13 15:47 AC_Von 阅读(216) 评论(0) 推荐(0) 编辑