链表在第几个位置添加和删除

#include<iostream>

using namespace std;

struct Node
{
 int nValue;
 Node *pNext;
};
void CreateList(Node **pHead,Node **pEnd,int n)
{
 int nValue;
 for(int i=0;i<n;i++)
 {
  cin>>nValue;
  Node *temp=(Node*)malloc(sizeof(Node));
  temp->nValue=nValue;
  temp->pNext=NULL;
  if((*pHead)==NULL)
  {
   (*pHead)=temp;
   (*pEnd)=temp;
  }
  else
  {
   (*pEnd)->pNext=temp;
   (*pEnd)=temp;
  }
 }
}
void AddnValue(Node **pHead,Node **pEnd,int n,int nInsertValue)//在链表中第几个位置添加元素
{
 Node *temp=(Node*)malloc(sizeof(Node));
 temp->nValue=nInsertValue;
 temp->pNext=NULL;
 int i=1;
 if((*pHead)==NULL)
 {
  (*pHead)=temp;
  return;
 }
 if(1==n)
 {
  temp->pNext=(*pHead);
  (*pHead)=temp;
  return ;
 }
 Node *zou=(*pHead);
 while(zou->pNext!=NULL)
 {
  i++;
  if(i==n)
  {
   temp->pNext=zou->pNext;
   zou->pNext=temp;
   return ;
  }
  zou=zou->pNext;
 }
 zou->pNext=temp;
}
void DeletenValue(Node **pHead,Node **pEnd,int n)//删除第几个位置的元素
{
 if((*pHead)==NULL||(*pEnd)==NULL)
 {
  return ;
 }
 int i=1;
 Node *pDel;
 if(1==n)
 {
  pDel=(*pHead);
  (*pHead)=(*pHead)->pNext;
  free(pDel);
  return ;
 }
 Node *zou=(*pHead);
 while(zou->pNext!=NULL)
 {
  i++;
  if(i==n)
  {
   pDel=zou->pNext;
   zou->pNext=zou->pNext->pNext;
   free(pDel);
   return ;
  }
  zou=zou->pNext;
 }
}
void ShowList(Node *pHead,Node *pEnd)
{
 if(pHead==NULL||pEnd==NULL)
 {
  return ;
 }
 Node *temp=pHead;
 while(temp->pNext)
 {
  cout<<temp->nValue<<" ";
  temp=temp->pNext;
 }
 cout<<temp->nValue<<endl;
}

void DeleteList(Node **pHead,Node **pEnd)
{
 Node *temp=(*pHead);
 while(temp)
 {
  Node *pDel=temp;
  temp=temp->pNext;
  free(pDel);
  pDel=NULL;
 }
}
int main()
{
 int n;
 int n_insert;
 int nInsertValue;
 int n_delete;
 while(cin>>n)
 {
  Node *pHead=NULL;
  Node *pEnd=NULL;
  CreateList(&pHead,&pEnd,n);
  ShowList(pHead,pEnd);
  cin>>n_insert>>nInsertValue;
  AddnValue(&pHead,&pEnd,n_insert,nInsertValue);
  ShowList(pHead,pEnd);
  cin>>n_delete;//1
  DeletenValue(&pHead,&pEnd,n_delete);
  ShowList(pHead,pEnd);
  cin>>n_delete;//2
  DeletenValue(&pHead,&pEnd,n_delete);
  ShowList(pHead,pEnd);
  cin>>n_delete;//3
  DeletenValue(&pHead,&pEnd,n_delete);
  ShowList(pHead,pEnd);
  DeleteList(&pHead,&pEnd);
 }
 return 0;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值