#include
#include
typedef int ElementType;
#include "_List.h"
#include "_List.c"
int main()
{
List L;
Position P;
L = CreateList();
Insert( 5, L, L );
Insert( 4, L, L );
Insert( 3, L, L );
Insert( 2, L, L );
Insert( 1, L, L );
P = L->Next;
while( P != NULL )
{
printf( "%d ", P->Element );
P = P->Next;
}
return 0;
}