首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴练家志的代码贴全部
#include<stdio.h>  
#include <stdlib.h>
struct Link
{
      int data;
      struct Link *next;
      
};
bool InsertNode(struct Link *ptr,int Loact);
struct Link *CreatLink(struct Link *ptr);
bool DleteNode(struct Link *pt,int i);
void Print(struct Link *p);
......................
阅读全部 | 2011年12月21日 21:26
1
练家志