#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