void PrintTailToHead(PLinkList pList)

{

if(pList)

{

PrintTailToHead(pList->next);

printf("%d->", pList->data);

}

}