劍指offer--統計一個數字在排序數組中出現的次數

題目描述 統計一個數字在排序數組中出現的次數。 class Solution { public: int GetNumberOfK(vector<int> data, int k) { int length = data.size();//求數組長度 int i = 0; int count = 0; while (i < length) { if (data[i] == k)
相關文章
相關標籤/搜索