Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for crossOverUp (0.2 sec)

  1. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

          // TODO(kevinb): split the && into two if's and move crossOverUp so it's
          // only called when there's no child.
          if ((minChildIndex > 0) && (ordering.compare(elementData(minChildIndex), x) < 0)) {
            queue[index] = elementData(minChildIndex);
            queue[minChildIndex] = x;
            return minChildIndex;
          }
          return crossOverUp(index, x);
        }
    
        /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
Back to top