首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴sunxueguang1的代码贴全部
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
typedef struct node
{
int data;
struct node *next;
}lnode,*linklist;
creatlist(linklist l)
{
lnode *p,*q;
int i,j;
......................
阅读全部 | 2013年4月24日 20:25
1
sunxueguang1