/************方法一(利用一维数组记录重复数字在数组中的下标)************************/
/*建议用一维链表,删除元素不需要移动大量元素*/
#include<stdio.h>
#include"malloc.h"
#include"string.h"
int main()
{
    void func(int a[],int n);
    int delete_repeat(int a[],int n,int num[]);
    int N,i,x,count,flag;
    scanf("%d",&N);
    int *pt=(int*)malloc(N*sizeof(int));
    int *repeat_num=(int*)malloc(N*sizeof(int));
    memset(repeat_num,0,N*sizeof(int));
    for(i=0;i<N;i++)
    scanf("%d",&pt[i]);
    func(pt,N);
    count=delete_repeat(pt,N,repeat_num);
    printf("%d\n",count);
    for(i=0;i<N;i++)
    {
        if(i==0) printf("%d ",pt[i]);
        else
        {
        flag=1;    //千万不要忘记置1
        for(x=0;repeat_num[x]!=0;x++)   //将数组中重复的数禁止输出
        if(i==repeat_num[x])
              flag=0;
        if(flag) printf("%d ",pt[i]);
        }
    }
    printf("\n");
    free(repeat_num);
    free(pt);
    return 0;
}
void func(int a[],int n)  //冒泡排序
{
    int k,t,temp;
    for(k=0;k<n-1;k++)
    for(t=0;t<n-k;t++)
        if(a[t]>a[t+1])
        {temp=a[t];a[t]=a[t+1];a[t+1]=temp;}
    return ;
}
int delete_repeat(int a[],int n,int num[])
{
    int c=0,s,index=0;
    for(s=0;s<n;s++)
    if(a[s]==a[s+1]) {c++;num[index++]=s+1;}//记录排序后相同数值的数组下标
    return n-c;
}

/************方法二(利用单链表删除重复数字5ms)******************************/
#include<stdio.h>
#include"malloc.h"
void sort(int a[],int n);
typedef struct node
{
    int num;
    struct node *next;
    }*Node;
Node creat(int a[],int n);
void dele(int a[],int n);
int main()
{
    int N,i;
    scanf("%d",&N);
    int *pt=(int*)malloc(N*sizeof(int));
    for(i=0;i<N;i++)
    scanf("%d",&pt[i]);
    sort(pt,N);
    dele(pt,N);
    free(pt);
    return 0;
}
void sort(int a[],int n)
{
    int i,j,temp;
    for(i=0;i<n-1;i++)
    for(j=0;j<n-i;j++)
    if(a[j]>a[j+1])
    {temp=a[j],a[j]=a[j+1];a[j+1]=temp;}
    return ;
}

Node creat(int a[],int n)
{
    Node head=(Node)malloc(sizeof(struct node));
    head->next=NULL;
    Node p=head;
    Node q;
    int i;
    for(i=0;i<n;i++)
    {
        q=(Node)malloc(sizeof(struct node));
        q->num=a[i];
        q->next=p->next;
        p->next=q;
        p=q;
    }
    return head;
}

void dele(int a[],int n)
{
    Node head;
    Node p,q;
    int count=0;
    head=creat(a,n);
    p=head->next;
    while(p->next!=NULL)
    {
        q=p->next;
        while(p->num==q->num)/***********链表中重复数字计数并删除****************/
        {
            p->next=q->next;
            free(q);
            q=p->next;
            count++;
        }
        p=p->next;
    }
    p=head->next;
    printf("%d\n",n-count);
    while(p!=NULL)
    {
    printf("%d ",p->num);
    p=p->next;
    }
    free(head);
}
点赞(1)
 

0.0分

0 人评分

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

评论列表 共有 0 条评论

暂无评论