牛客(37)数字在排序数组中出现的次数
Posted 楷兵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了牛客(37)数字在排序数组中出现的次数相关的知识,希望对你有一定的参考价值。
// 题目描述 // 统计一个数字在排序数组中出现的次数。 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; }
以上是关于牛客(37)数字在排序数组中出现的次数的主要内容,如果未能解决你的问题,请参考以下文章