首页 > 其他 > 详细

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

时间:2021-07-09 23:35:03      阅读:29      评论:0      收藏:0      [点我收藏+]

题目如下

技术分享图片

 

 

#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.删除有序表中带头结点单链表相同元素

原文:https://www.cnblogs.com/upupup-999/p/14991813.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!