用C语言编写一完整程序,要求如下:
用C语言编写一完整程序,要求如下:
日期:2010-11-23 19:09:46 人气:1
#include
#include
#define N 20
typedef struct LNode
{
int data;
struct LNode *next;
}LNode,*LinkList;
/****************************************************/
LinkList Creat(int n)
{
LinkList head = NULL,p1 = NULL,p2 = NULL;
p1