c语言数组去重函数调用
时间: 2024-04-02 11:29:52 浏览: 268
C语言实现数组去重操作
在C语言中,可以通过编写一个数组去重函数来实现对数组中重复元素的去除。以下是一个示例的数组去重函数调用的介绍:
假设我们有一个整型数组`arr`,长度为`n`,我们想要对该数组进行去重操作。可以按照以下步骤进行:
1. 定义一个新的数组`result`,用于存储去重后的元素。
2. 遍历原始数组`arr`,逐个检查每个元素是否已经存在于`result`数组中。
3. 如果当前元素不存在于`result`数组中,则将其添加到`result`数组中。
4. 最后,`result`数组中存储的就是去重后的元素。
下面是一个示例的C语言代码,展示了如何调用一个数组去重函数:
```c
#include <stdio.h>
// 数组去重函数
int* removeDuplicates(int* arr, int n, int* resultSize) {
int* result = (int*)malloc(n * sizeof(int)); // 分配内存空间
int count = 0; // 记录去重后的元素个数
for (int i = 0; i < n; i++) {
int j;
for (j = 0; j < count; j++) {
if (arr[i] == result[j]) {
break; // 当前元素已存在于result数组中,跳出内层循环
}
}
if (j == count) {
result[count++] = arr[i]; // 当前元素不存在于result数组中,添加到result数组中
}
}
*resultSize = count; // 更新去重后的元素个数
return result;
}
int main() {
int arr[] = {1, 2, 3, 2, 4, 1, 5};
int n = sizeof(arr) / sizeof(arr[0]);
int resultSize;
int* result = removeDuplicates(arr, n, &resultSize);
printf("去重后的数组:");
for (int i = 0; i < resultSize; i++) {
printf("%d ", result[i]);
}
free(result); // 释放内存空间
return 0;
}
```
运行上述代码,输出结果为:
```
去重后的数组:1 2 3 4 5
```
阅读全文