int.Vec.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:5k
源码类别:

通讯编程

开发平台:

Visual C++

  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. This file is part of the GNU C++ Library.  This library is free
  6. software; you can redistribute it and/or modify it under the terms of
  7. the GNU Library General Public License as published by the Free
  8. Software Foundation; either version 2 of the License, or (at your
  9. option) any later version.  This library is distributed in the hope
  10. that it will be useful, but WITHOUT ANY WARRANTY; without even the
  11. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  12. PURPOSE.  See the GNU Library General Public License for more details.
  13. You should have received a copy of the GNU Library General Public
  14. License along with this library; if not, write to the Free Software
  15. Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16. Linking this file statically or dynamically with other modules is making
  17. a combined work based on this file.  Thus, the terms and conditions of
  18. the GNU General Public License cover the whole combination.
  19. In addition, as a special exception, the copyright holders of this file
  20. give you permission to combine this file with free software programs or
  21. libraries that are released under the GNU LGPL and with code included in
  22. the standard release of ns-2 under the Apache 2.0 license or under
  23. otherwise-compatible licenses with advertising requirements (or modified
  24. versions of such code, with unchanged license).  You may copy and
  25. distribute such a system following the terms of the GNU GPL for this
  26. file and the licenses of the other code concerned, provided that you
  27. include the source code of that other code when and as the GNU GPL
  28. requires distribution of source code.
  29. Note that people who make modified versions of this file are not
  30. obligated to grant this special exception for their modified versions;
  31. it is their choice whether to do so.  The GNU General Public License
  32. gives permission to release a modified version without this exception;
  33. this exception also makes it possible to release a modified version
  34. which carries forward this exception.
  35. */
  36. #ifndef _intVec_h
  37. #ifdef __GNUG__
  38. #pragma interface
  39. #endif
  40. #define _intVec_h 1
  41. #include "builtin.h"
  42. #include "int.defs.h"
  43. #ifndef _int_typedefs
  44. #define _int_typedefs 1
  45. typedef void (*intProcedure)(int );
  46. typedef int  (*intMapper)(int );
  47. typedef int  (*intCombiner)(int , int );
  48. typedef int  (*intPredicate)(int );
  49. typedef int  (*intComparator)(int , int );
  50. #endif
  51. class intVec 
  52. {
  53. protected:      
  54.   int                   len;
  55.   int                   *s;                  
  56.                         intVec(int l, int* d);
  57. public:
  58.                         intVec ();
  59.                         intVec (int l);
  60.                         intVec (int l, int  fill_value);
  61.                         intVec (const intVec&);
  62.                         ~intVec ();
  63.   intVec &              operator = (const intVec & a);
  64.   intVec                at(int from = 0, int n = -1);
  65.   int                   capacity() const;
  66.   void                  resize(int newlen);                        
  67.   int&                  operator [] (int n);
  68.   int&                  elem(int n);
  69.   friend intVec         concat(intVec & a, intVec & b);
  70.   friend intVec         map(intMapper f, intVec & a);
  71.   friend intVec         merge(intVec & a, intVec & b, intComparator f);
  72.   friend intVec         combine(intCombiner f, intVec & a, intVec & b);
  73.   friend intVec         reverse(intVec & a);
  74.   void                  reverse();
  75.   void                  sort(intComparator f);
  76.   void                  fill(int  val, int from = 0, int n = -1);
  77.   void                  apply(intProcedure f);
  78.   int                   reduce(intCombiner f, int  base);
  79.   int                   index(int  targ);
  80.   friend int            operator == (intVec& a, intVec& b);
  81.   friend int            operator != (intVec& a, intVec& b);
  82.   void                  error(const char* msg);
  83.   void                  range_error();
  84. };
  85. extern void default_intVec_error_handler(const char*);
  86. extern one_arg_error_handler_t intVec_error_handler;
  87. extern one_arg_error_handler_t 
  88.         set_intVec_error_handler(one_arg_error_handler_t f);
  89. inline intVec::intVec()
  90. {
  91.   len = 0; s = 0;
  92. }
  93. inline intVec::intVec(int l)
  94. {
  95.   s = new int [len = l];
  96. }
  97. inline intVec::intVec(int l, int* d) :len(l), s(d) {}
  98. inline intVec::~intVec()
  99. {
  100.   delete [] s;
  101. }
  102. inline int& intVec::operator [] (int n)
  103. {
  104.   if ((unsigned)n >= (unsigned)len)
  105.     range_error();
  106.   return s[n];
  107. }
  108. inline int& intVec::elem(int n)
  109. {
  110.   return s[n];
  111. }
  112. inline int intVec::capacity() const
  113. {
  114.   return len;
  115. }
  116. inline int operator != (intVec& a, intVec& b)
  117. {
  118.   return !(a == b);
  119. }
  120. #endif