Find unique numbers in array

后端 未结 8 1140
被撕碎了的回忆
被撕碎了的回忆 2021-02-04 20:14

Well, I have to find how many different numbers are in an array.

For example if array is: 1 9 4 5 8 3 1 3 5

The output should be 6, because 1,9,4,5,8,3 are uniqu

8条回答
  •  失恋的感觉
    2021-02-04 20:44

    A std::set contains only unique elements already.

    #include 
    
    int main()
    {
        int a[] = { 1, 9, 4, 5, 8, 3, 1, 3, 5 };
    
        std::set sa(a, a + 9);
        std::cout << sa.size() << std::endl;
    }
    

提交回复
热议问题