Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for findMinChild (0.06 seconds)

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

            if (compareElements(i, minIndex) < 0) {
              minIndex = i;
            }
          }
          return minIndex;
        }
    
        /** Returns the minimum child or {@code -1} if no child exists. */
        int findMinChild(int index) {
          return findMin(getLeftChildIndex(index), 2);
        }
    
        /** Returns the minimum grand child or -1 if no grand child exists. */
        int findMinGrandChild(int index) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 33.9K bytes
    - Click Count (0)
Back to Top