链表操作程序
摘要:
#include<iostream>using namespace std;struct listNode{ int value; listNode* pNext;};void AddToTail(listNode** pHead,int value){ listNode* newNode=new listNode(); newNode->pNext=NULL; newNode->value=value; if(*pHead==NULL) { *pHead=newNode; }else { listNode *p... 阅读全文