home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c017 / 7.ddi / GPPLIB.ZIP / VEC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-17  |  4.1 KB  |  174 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY.  No author or distributor
  10. accepts responsibility to anyone for the consequences of using it
  11. or for whether it serves any particular purpose or works at all,
  12. unless he says so in writing.  Refer to the GNU CC General Public
  13. License for full details.
  14.  
  15. Everyone is granted permission to copy, modify and redistribute
  16. GNU CC, but only under the conditions described in the
  17. GNU CC General Public License.   A copy of this license is
  18. supposed to have been given to you along with GNU CC so you
  19. can know your rights and responsibilities.  It should be in a
  20. file named COPYING.  Among other things, the copyright notice
  21. and this notice must be preserved on all copies.  
  22. */
  23.  
  24.  
  25. #ifndef _<T>Vec_h
  26. #define _<T>Vec_h 1
  27.  
  28. #ifndef _<T>_typedefs
  29. #define _<T>_typedefs 1
  30. typedef void (*<T>Procedure)(<T&>);
  31. typedef <T>  (*<T>Mapper)(<T&>);
  32. typedef <T>  (*<T>Combiner)(<T&>, <T&>);
  33. typedef int  (*<T>Predicate)(<T&>);
  34. typedef int  (*<T>Comparator)(<T&>, <T&>);
  35. #endif
  36.  
  37.  
  38. class <T>Vec 
  39. {
  40. protected:
  41.   int                   len;
  42.   <T>                   *s;                  
  43.  
  44.                         <T>Vec(int l, <T>* d);
  45. public:
  46.                         <T>Vec ();
  47.                         <T>Vec (int l);
  48.                         <T>Vec (int l, <T&> fill_value);
  49.                         <T>Vec (<T>Vec&);
  50.                         ~<T>Vec ();
  51.  
  52.   <T>Vec &              operator = (<T>Vec & a);
  53.   <T>Vec                at(int from = 0, int n = -1);
  54.  
  55.   int                   capacity();
  56.   void                  resize(int newlen);                        
  57.  
  58.   <T>&                  operator [] (int n);
  59.   <T>&                  elem(int n);
  60.  
  61.   friend <T>Vec         concat(<T>Vec & a, <T>Vec & b);
  62.   friend <T>Vec         map(<T>Mapper f, <T>Vec & a);
  63.   friend <T>Vec         merge(<T>Vec & a, <T>Vec & b, <T>Comparator f);
  64.   friend <T>Vec         combine(<T>Combiner f, <T>Vec & a, <T>Vec & b);
  65.   friend <T>Vec         reverse(<T>Vec & a);
  66.  
  67.   void                  reverse();
  68.   void                  sort(<T>Comparator f);
  69.   void                  fill(<T&> val, int from = 0, int n = -1);
  70.  
  71.   void                  apply(<T>Procedure f);
  72.   <T>                   reduce(<T>Combiner f, <T&> base);
  73.   int                   index(<T&> targ);
  74.  
  75.   friend int            operator == (<T>Vec& a, <T>Vec& b);
  76.   friend int            operator != (<T>Vec& a, <T>Vec& b);
  77.  
  78.   void                  error(const char* msg);
  79.   void                  range_error();
  80. };
  81.  
  82.  
  83. inline <T>Vec::<T>Vec()
  84. {
  85.   len = 0; s = 0;
  86. }
  87.  
  88. inline <T>Vec::<T>Vec(int l)
  89. {
  90.   s = new <T> [len = l];
  91. }
  92.  
  93. inline <T>Vec::<T>Vec(int l, <T&> fill_value)
  94. {
  95.   s = new <T> [len = l];
  96.   <T>* top = &(s[len]);
  97.   <T>* t = s;
  98.   while (t < top) *t++ = fill_value;
  99. }
  100.  
  101. inline <T>Vec::<T>Vec(int l, <T>* d)
  102. {
  103.   len = l;
  104.   s = d;
  105. }
  106.  
  107. inline <T>Vec::<T>Vec(<T>Vec& v)
  108. {
  109.   s = new <T> [len = v.len];
  110.   <T>* top = &(s[len]);
  111.   <T>* t = s;
  112.   <T>* u = v.s;
  113.   while (t < top) *t++ = *u++;
  114. }
  115.  
  116. inline <T>Vec::~<T>Vec()
  117. {
  118.   delete[len] s;
  119. }
  120.  
  121. inline <T>Vec& <T>Vec::operator = (<T>Vec& v)
  122. {
  123.   if (this != &v)
  124.   {
  125.     delete[len] s;
  126.     s = new <T> [len = v.len];
  127.     <T>* top = &(s[len]);
  128.     <T>* t = s;
  129.     <T>* u = v.s;
  130.     while (t < top) *t++ = *u++;
  131.   }
  132.   return *this;
  133. }
  134.  
  135. inline <T>& <T>Vec::operator [] (int n)
  136. {
  137.   if ((unsigned)n >= len)
  138.     range_error();
  139.   return s[n];
  140. }
  141.  
  142. inline <T>& <T>Vec::elem(int n)
  143. {
  144.   return s[n];
  145. }
  146.  
  147.  
  148. inline int <T>Vec::capacity()
  149. {
  150.   return len;
  151. }
  152.  
  153. inline void <T>Vec::apply(<T>Procedure f)
  154. {
  155.   <T>* top = &(s[len]);
  156.   <T>* t = s;
  157.   while (t < top) (*f)(*t++);
  158. }
  159.  
  160.  
  161. inline int operator != (<T>Vec& a, <T>Vec& b)
  162. {
  163.   return !(a == b);
  164. }
  165.  
  166.  
  167. extern void default_<T>Vec_error_handler(char*);
  168. extern one_arg_error_handler_t <T>Vec_error_handler;
  169.  
  170. extern one_arg_error_handler_t 
  171.         set_<T>Vec_error_handler(one_arg_error_handler_t f);
  172.  
  173. #endif
  174.