Cover Data Structures and Algorithms with Object-Oriented Design Patterns in Java
next up previous contents index

Finding the Position of an Item and Accessing by Position

Program gif defines two more methods of the OrderedListAsArray class, findPosition and get. The findPosition method takes as its argument a Comparable object. The purpose of this method is to search the ordered list for an item which matches the object, and to return its position in the form of an object that implements the Cursor interface. In this case, the result is an instance of the MyCursor inner class.

   program8842
Program: OrderedListAsArray class findPosition and get methods.

The search algorithm used in findPosition is identical to that used in the find method (Program gif). The findPosition uses the isEQ method to locate a contained object which is equal to the search target. Note that if no match is found, the offset is set to the value count, which is one position to the right of the last item in the ordered list. The running time of findPosition is identical to that of find: tex2html_wrap_inline60524, where tex2html_wrap_inline60196.

The get method defined in Program gif takes an int argument and returns the object in the ordered list at the specified position. In this case, the position is specified using an integer-valued subscript expression. The implementation of this method is trivial--it simply indexes into the array. Assuming the specified offset is valid, the running time of this method is O(1).


next up previous contents index

Bruno Copyright © 1998 by Bruno R. Preiss, P.Eng. All rights reserved.