首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴赵腾的代码贴全部
#include <stdio.h>
#include <stdlib.h>
struct yuansu
{
    int data;
    struct yuansu *next;
};
struct yuansu *creat(void)
{
    struct yuansu *head,*p1,*p2;
    head=p1=(struct yuansu*)malloc(sizeof(struct yuansu));
    p2=(struct yuansu*)malloc(sizeof(struct yuansu));
......................
阅读全部 | 2013年9月6日 23:59
1
赵腾