C语言刷题 LeetCode 30天挑战 (七)哈希计数法

//Counting Elements

//Given an integer array arr ,count element x such that x + 1 is also in arr

//lf there're duplicates in arr , count them seperately.

//Example 1:

//Input: arr =[1,2,3]

//0utput:2

//Explanation:1 and 2 are counted cause 2 and 3 are in arr.

//Example 2:

//Input: arr =[1,1,3,3,5,5,7,7]

//0utput:0

//Explanation: No numbers are counted, cause there's no 2,4,6, or 8 in arr.

//Example 3:

//Input: arr = [1,3,2,3,5,8]

//Output:3

//Explanation:0,1 and 2 are counted cause 1,2 and 3 are in arr.

//Example 4:

//Input: arr =[1,1,2,2]

//0utput:2

//Explanation:Two is are counted cause 2 is in arr.

cpp 复制代码
#include <stdio.h>

int countElements(int *arr, int arrSize) {
    // Boolean array to mark presence of elements in the input array.
    int elementExists[1002] = {0}; // Supports values from 0 to 1000

    // Mark the presence of elements in the array
    for (int i = 0; i < arrSize; ++i) {
        elementExists[arr[i]] = 1;
    }

    int returnNum = 0;
    // Check if `arr[i] + 1` exists in the array
    for (int i = 0; i < arrSize; ++i) {
        if (elementExists[arr[i] + 1]) {
            returnNum++;
        }
    }

    return returnNum;
}

int main()
{
    int arr[] = {1,1,2,2};
    printf("%d",countElements(arr,sizeof(arr)/sizeof(arr[0])));
    return 0;
}
相关推荐
HappyGame02几秒前
Linux多线程编程
linux
躺着数星星1 分钟前
Linux中安装es
linux·elasticsearch·jenkins
青草地溪水旁9 分钟前
设计模式(C++)详解——策略模式(2)
c++·设计模式·策略模式
带土110 分钟前
32位ubuntu14.0.4安装chrome
linux·chrome
鄃鳕16 分钟前
高并发日志项目中,C++IO的使用
开发语言·c++
UrbanJazzerati18 分钟前
考研数学:使用有理根定理和多项式除法来解一元多次整系数方程
算法
点云侠25 分钟前
PCL 生成缺角立方体点云
开发语言·c++·人工智能·算法·计算机视觉
欢鸽儿26 分钟前
Vivado综合通关指南:从IP打包失败到工具崩溃的四重考验
linux·ubuntu·fpga
9毫米的幻想30 分钟前
【Linux系统】—— 程序地址空间
java·linux·c语言·jvm·c++·学习