解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<stdlib.h>
void sort(int *pInt, int total)
{
int i,j,temp;
for(i = 0;i < total-1;i++)
{
for(j=total-1; j > i; j--)
{
if(*(pInt+j) < *(pInt+j-1))
{
temp = *(pInt+j);
*(pInt+j) = *(pInt+j-1);
*(pInt+j-1) = temp;
}
}
}
}
int rmRepeat(int* pInt, int total)
{
int i,noRepeatTotal=0;
for(i = 0; i< (total-1); i++)
{
if(*(pInt + i) == *(pInt + i + 1))
{
*(pInt + i) = -1;
}
else
{
noRepeatTotal++;
}
}
noRepeatTotal++;
return noRepeatTotal;
}
int main()
{
int n,i;
int *pInt;
scanf("%d", &n);
pInt = (int*)malloc(n*sizeof(int));
for(i = 0; i< n; i++)
{
scanf("%d", pInt+i);
}
sort(pInt,n);
printf("%d\n",rmRepeat(pInt, n));
for(i=0; i< n; i++)
{
if(-1 != *(pInt+i))
printf("%d ", *(pInt+i));
}
printf("\n");
return 0;
}
0.0分
0 人评分
分糖果 (C++代码)浏览:1537 |
妹子杀手的故事 (C语言代码)浏览:1298 |
兰顿蚂蚁 (C++代码)浏览:1160 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:732 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:504 |
WU-链表数据求和操作 (C++代码)浏览:1385 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:593 |
C语言程序设计教程(第三版)课后习题6.8 (C++代码)浏览:614 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:628 |
蛇行矩阵 (C语言代码)浏览:606 |