一维数组删除重复值的方法可以通过以下步骤实现:
以下是一个示例代码:
#include <stdio.h>
#define MAX_SIZE 100
int main() {
int arr[MAX_SIZE], uniqueArr[MAX_SIZE];
int n, k = 0, isUnique;
printf("Enter the size of the array: ");
scanf("%d", &n);
printf("Enter the elements of the array: ");
for (int i = 0; i < n; i++) {
scanf("%d", &arr[i]);
}
// Check for unique elements
for (int i = 0; i < n; i++) {
isUnique = 1;
for (int j = 0; j < k; j++) {
if (arr[i] == uniqueArr[j]) {
isUnique = 0;
break;
}
}
if (isUnique) {
uniqueArr[k++] = arr[i];
}
}
printf("Array after removing duplicates: ");
for (int i = 0; i < k; i++) {
printf("%d ", uniqueArr[i]);
}
return 0;
}
这段代码首先输入了一个数组的大小和元素,然后遍历该数组,将不重复的元素存储在一个新的数组中,最后输出新数组中的元素。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言中的选择排序法怎么用