在牛客網上做到的一道題,挺簡單基礎的,不過也寫一下,哈哈! 統計一個數字在排序數組中出現的次數: 可定義一個用於統計數字個數的變數count,然後從前往後遍曆數組,看是否與所求數字相等,如果相等,則count++; 下麵貼出代碼: public class Solution { public int ...
在牛客網上做到的一道題,挺簡單基礎的,不過也寫一下,哈哈!
統計一個數字在排序數組中出現的次數:
可定義一個用於統計數字個數的變數count,然後從前往後遍曆數組,看是否與所求數字相等,如果相等,則count++;
下麵貼出代碼:
public
class
Solution {
public
int
GetNumberOfK(
int
[] array ,
int
k) {
int
count =
0
;
for
(
int
i=
0
;i<array.length;i++){
if
(array[i]==k){
count++;
}
}
return
count;
}
}