/*--------------------------------------------------------------------
函数名称:DeleteList(ListNode *h, int i, int n)
函数功能:删除链表结点
入口参数: h: 头结点地址 i:要删除的结点所在位置 n:链表中结点的个数除下头结点外的个数
出口参数:
--------------------------------------------------------------------*/
void DeleteList(ListNode *h, int i, int n)
{
ListNode *p,*q;//首先定义2个指向结点型结构体的指针
char name[10];
int score;
if(i<1||i>count+1)
printf("Error!!!\n");
else
{
int j=1;
p=h;//将指针指向链表的头结点首地址
while(j<i)
{
p=p->next;
j++;
}
q=p->next;/*q指向要删除的位置之前的那个结点指针域指向的
地址q指向的结点就是要删除的结点*/
p->next=q->next;/*这个就是将要删除的结点的前面那个结点
的指针域指向要删除的结点指针域中存放的下个结点的
首地址从而实现了删除第i个结点的作用*/
strcpy(name,q->name);
score=q->score;
free(q);//释放q指向的结点
printf("name:%s\tscore:%d has been deleted!!!\n",name,score);
}
}
/*--------------------------主函数-------------------------------*/
int main()
{
ListNode *h;//h指向结构体NODE
int i = 1, n, score;
char name [10];
while ( i )
{
/*输入提示信息*/
printf("1--建立新的链表\n");
printf("2--添加元素\n");
printf("3--删除元素\n");
printf("4--输出当前表中的元素\n");
printf("0--退出\n");
scanf("%d",&i);
switch(i)
{
case 1:
h=CreateList();/*创建链表*/
printf("list elements is : \n");
PrintList(h);
break;
case 2:
printf("input the position. of insert element:");
scanf("%d",&i);
printf("input name of the student:");
scanf("%s",name);
printf("input score of the student:");
scanf("%d",&score);
InsertList(h,i,name,score,count);
printf("list elements is:\n");
PrintList(h);
break;
case 3:
printf("input the position of delete element:");
scanf("%d",&i);
DeleteList(h,i,count);
printf("list elements in : \n");
PrintList(h);
break;
case 4:
printf("list element is : \n");
PrintList(h);
break;
case 0:
return;
break;
default:
printf("ERROR!Try again!\n");
}
}
return 0;
}