home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / IBMCLASS / IAKSSET.C < prev    next >
Text File  |  1993-09-22  |  3KB  |  80 lines

  1. /*******************************************************************************
  2. *                                                                              *
  3. * COPYRIGHT:                                                                   *
  4. *   IBM C/C++ Tools Version 2.01 - Collection Class Library                    *
  5. *   Licensed Materials - Property of IBM                                       *
  6. *   (C) Copyright IBM Corporation 1992, 1993                                   *
  7. *   All Rights Reserved                                                        *
  8. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  9. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  10. *                                                                              *
  11. *******************************************************************************/
  12.  
  13. template < class Element, class Key >
  14. INumber IAKeySortedSet < Element, Key >::
  15. numberOfElementsWithKey (Key const& key) const
  16. { if (containsElementWithKey (key))
  17.     return 1;
  18.   else
  19.     return 0;
  20. }
  21.  
  22. template < class Element, class Key >
  23. IBoolean IAKeySortedSet < Element, Key >::
  24. locateNextElementWithKey (Key const&, ICursor& cursor) const
  25. { elementAt (cursor); // just for precondition checking
  26.   cursor.invalidate ();
  27.   return False;
  28. }
  29.  
  30. template < class Element, class Key >
  31. INumber IAKeySortedSet < Element, Key >::
  32. removeAllElementsWithKey (Key const& key)
  33. { if (removeElementWithKey (key))
  34.     return 1;
  35.   else
  36.     return 0;
  37. }
  38.  
  39. template < class Element, class Key >
  40. INumber IAKeySortedSet < Element, Key >::
  41. numberOfDifferentKeys () const
  42. { return numberOfElements ();
  43. }
  44.  
  45. template < class Element, class Key >
  46. IBoolean IAKeySortedSet < Element, Key >::
  47. setToNextWithDifferentKey (ICursor& cursor) const
  48. { return setToNext (cursor);
  49. }
  50.  
  51. template < class Element, class Key >
  52. long IAKeySortedSet < Element, Key >::
  53. compare (IAKeySortedSet < Element, Key > const& collection,
  54.          long (*comparisonFunction) (Element const&, Element const&)) const
  55. { long result = 0;
  56.   ICursor *thisCursor = newCursor ();
  57.   ICursor *collectionCursor = collection.newCursor ();
  58.  
  59.   for (thisCursor->setToFirst (), collectionCursor->setToFirst ();
  60.        result == 0 && thisCursor->isValid () && collectionCursor->isValid ();
  61.        thisCursor->setToNext (), collectionCursor->setToNext ()) {
  62.     result = (*comparisonFunction) (this->elementAt (*thisCursor),
  63.                                       collection.elementAt (*collectionCursor));
  64.   }
  65.  
  66.   if (result == 0) {
  67.     if (thisCursor->isValid () && ! collectionCursor->isValid ())
  68.       result = 1;
  69.     else if (! thisCursor->isValid () && collectionCursor->isValid ())
  70.       result = -1;
  71.     else {
  72.     }
  73.   }
  74.   delete thisCursor;
  75.   delete collectionCursor;
  76.  
  77.   return result;
  78. }
  79.  
  80.