溫馨提示×

c語言怎么判斷元素是否在數(shù)組中

小億
242
2023-10-23 23:32:25
欄目: 編程語言

在C語言中,可以通過遍歷數(shù)組的每個元素來判斷一個元素是否在數(shù)組中。以下是一個示例代碼:

#include <stdio.h>

int isElementInArray(int arr[], int size, int element) {
    for (int i = 0; i < size; i++) {
        if (arr[i] == element) {
            return 1; // 元素在數(shù)組中
        }
    }
    return 0; // 元素不在數(shù)組中
}

int main() {
    int arr[] = {1, 2, 3, 4, 5};
    int size = sizeof(arr) / sizeof(arr[0]);
    int element = 3;
    
    if (isElementInArray(arr, size, element)) {
        printf("元素在數(shù)組中\(zhòng)n");
    } else {
        printf("元素不在數(shù)組中\(zhòng)n");
    }
    
    return 0;
}

這個示例代碼中,isElementInArray 函數(shù)接受一個整型數(shù)組 arr、數(shù)組大小 size 和待查找的元素 element 作為參數(shù)。函數(shù)使用 for 循環(huán)遍歷數(shù)組,如果找到了與 element 相等的元素,則返回 1,表示元素在數(shù)組中;如果遍歷完數(shù)組都沒有找到相等的元素,則返回 0,表示元素不在數(shù)組中。

main 函數(shù)中,定義了一個整型數(shù)組 arr 和數(shù)組大小 size,以及待查找的元素 element。調(diào)用 isElementInArray 函數(shù)并根據(jù)返回結(jié)果打印相應的信息。

0