找出數組中第一個重複的元素

長度爲n的數組,存放0-n-1的int數,找出數組中第一個重複的元素。c++ bool duplicate(int numbers[], int length, int* duplication) { if (length <= 0 || numbers == nullptr) { return false; } for (int i = 0; i < le
相關文章
相關標籤/搜索