• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2     Copyright 2010 Google Inc.
3 
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7 
8          http://www.apache.org/licenses/LICENSE-2.0
9 
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15  */
16 
17 
18 #ifndef GrTBSearch_DEFINED
19 #define GrTBSearch_DEFINED
20 
21 template <typename ELEM, typename KEY>
GrTBSearch(const ELEM array[],int count,KEY target)22 int GrTBSearch(const ELEM array[], int count, KEY target) {
23     GrAssert(count >= 0);
24     if (0 == count) {
25         // we should insert it at 0
26         return ~0;
27     }
28 
29     int high = count - 1;
30     int low = 0;
31     while (high > low) {
32         int index = (low + high) >> 1;
33         if (LT(array[index], target)) {
34             low = index + 1;
35         } else {
36             high = index;
37         }
38     }
39 
40     // check if we found it
41     if (EQ(array[high], target)) {
42         return high;
43     }
44 
45     // now return the ~ of where we should insert it
46     if (LT(array[high], target)) {
47         high += 1;
48     }
49     return ~high;
50 }
51 
52 #endif
53 
54