Interface SortedMatrixMaker.SortedMatrix
-
- Enclosing interface:
- SortedMatrixMaker
public static interface SortedMatrixMaker.SortedMatrixA matrix thingie
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceSortedMatrixMaker.SortedMatrix.MatrixRow
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FindResultfindRow(int startRowIndex, SortedMatrixMaker.SortedMatrix.MatrixRow row)SortedMatrixMaker.SortedMatrix.MatrixRowgetRow(int rowId)intnumRows()
-
-
-
Method Detail
-
numRows
int numRows()
-
getRow
SortedMatrixMaker.SortedMatrix.MatrixRow getRow(int rowId)
-
findRow
FindResult findRow(int startRowIndex, SortedMatrixMaker.SortedMatrix.MatrixRow row)
- Parameters:
startRowIndex- the rowIndex to start the search from. The return value should never be less than this valuerow- the row to compare against- Returns:
- a FindResult null if exists beyond the bounds of the current Matrix
-
-