码迷,mamicode.com
首页 > 编程语言 > 详细

剑指offer-数字在排序数组中出现的次数

时间:2020-06-09 09:58:05      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:coder   title   pid   off   ber   pre   question   剑指offer   div   

题目描述

 

 

 

 

public class Solution {
    public int GetNumberOfK(int [] array , int k) {
       int count = 0;
       for(int i =0;i < array.length;i++){
           if(k == array[i]){
               count++;
               continue;
           }
           if(count !=0){
               break;
           }
       }
       return count;
    }
}

 

剑指offer-数字在排序数组中出现的次数

标签:coder   title   pid   off   ber   pre   question   剑指offer   div   

原文地址:https://www.cnblogs.com/MoonBeautiful/p/13070112.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!