2013年11月22日
摘要: 剑指Offer - 九度1349 - 数字在排序数组中出现的次数2013-11-23 00:47题目描述:统计一个数字在排序数组中出现的次数。输入:每个测试案例包括两行:第一行有1个整数n,表示数组的大小。1 4 using namespace std; 5 6 int bsearch_left(const int a[], int n, int target) 7 { 8 int ll, rr, mm; 9 10 if(a == NULL || n a[n - 1]){ 15 return -1; 16 } 17 1... 阅读全文
posted @ 2013-11-22 22:15 zhuli19901106 阅读(328) 评论(0) 推荐(0) 编辑