20.删除有序表中带头结点单链表相同元素

题目如下

20.删除有序表中带头结点单链表相同元素

 

 

#include<stdio.h>
#include<stdlib.h>
typedef int ElemType;
typedef struct LNode{
    ElemType data;
    struct LNode *next;    
}LNode,*LinkList;

//尾插法 
 LinkList List_TailInsert(LinkList &L)
 {
     ElemType x;
     L=(LinkList)malloc(sizeof(LNode));
     LNode *s,*r=L;
     printf("请输入单链表各个节点,以9999结束!\n"); 
     scanf("%d",&x);
     while(x!=9999)
     {
         s=(LNode*)malloc(sizeof(LNode));
         s->data=x;
         r->next=s;
         r=s;
         scanf("%d",&x);
             
     }
     
     r->next=NULL;
     
     return L;
    
  }
   int Length(LinkList L)
 {
     LNode *p=L;
     int count=0;
     while(p->next!=NULL)
     {
         p=p->next;
         count++;
     }
     return count;
     
 }
 void Del_Same(LinkList &L){
     
     
     LNode *p=L->next,*q;
     if(p==NULL)
         return;
     while(p->next!=NULL)
     {
         q=p->next;
         if(p->data==q->data){
             p->next=q->next;
             free(q);
             
         }
         else
             p=p->next;
         
         
     }
    
 } 
 
 
  int main(){
    LinkList L;
    LinkList R,S;
    R=List_TailInsert(L);
    Del_Same(R);
    LNode *p=R;
    while(p->next!=NULL){
        p=p->next;
        printf("->%d",p->data);
        
    }
    
}

 

20.删除有序表中带头结点单链表相同元素

上一篇:在vue中使用动画---作为公共组件引入


下一篇:记录一下虚拟机安装centos8后的ip设置: