stl_numeric.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:7k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. /*
  2.  *
  3.  * Copyright (c) 1994
  4.  * Hewlett-Packard Company
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Hewlett-Packard Company makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  *
  14.  *
  15.  * Copyright (c) 1996,1997
  16.  * Silicon Graphics Computer Systems, Inc.
  17.  *
  18.  * Permission to use, copy, modify, distribute and sell this software
  19.  * and its documentation for any purpose is hereby granted without fee,
  20.  * provided that the above copyright notice appear in all copies and
  21.  * that both that copyright notice and this permission notice appear
  22.  * in supporting documentation.  Silicon Graphics makes no
  23.  * representations about the suitability of this software for any
  24.  * purpose.  It is provided "as is" without express or implied warranty.
  25.  */
  26. /* NOTE: This is an internal header file, included by other STL headers.
  27.  *   You should not attempt to use it directly.
  28.  */
  29. #ifndef __SGI_STL_INTERNAL_NUMERIC_H
  30. #define __SGI_STL_INTERNAL_NUMERIC_H
  31. __STL_BEGIN_NAMESPACE
  32. template <class _InputIterator, class _T>
  33. _T accumulate(_InputIterator __first, _InputIterator __last, _T __init)
  34. {
  35.   for ( ; __first != __last; ++__first)
  36.     __init = __init + *__first;
  37.   return __init;
  38. }
  39. template <class _InputIterator, class _T, class _BinaryOperation>
  40. _T accumulate(_InputIterator __first, _InputIterator __last, _T __init,
  41.               _BinaryOperation __binary_op)
  42. {
  43.   for ( ; __first != __last; ++__first)
  44.     __init = __binary_op(__init, *__first);
  45.   return __init;
  46. }
  47. template <class _InputIterator1, class _InputIterator2, class _T>
  48. _T inner_product(_InputIterator1 __first1, _InputIterator1 __last1,
  49.                  _InputIterator2 __first2, _T __init)
  50. {
  51.   for ( ; __first1 != __last1; ++__first1, ++__first2)
  52.     __init = __init + (*__first1 * *__first2);
  53.   return __init;
  54. }
  55. template <class _InputIterator1, class _InputIterator2, class _T,
  56.           class _BinaryOperation1, class _BinaryOperation2>
  57. _T inner_product(_InputIterator1 __first1, _InputIterator1 __last1,
  58.                  _InputIterator2 __first2, _T __init, 
  59.                  _BinaryOperation1 __binary_op1,
  60.                  _BinaryOperation2 __binary_op2)
  61. {
  62.   for ( ; __first1 != __last1; ++__first1, ++__first2)
  63.     __init = __binary_op1(__init, __binary_op2(*__first1, *__first2));
  64.   return __init;
  65. }
  66. template <class _InputIterator, class _OutputIterator, class _T>
  67. _OutputIterator 
  68. __partial_sum(_InputIterator __first, _InputIterator __last,
  69.               _OutputIterator __result, _T*)
  70. {
  71.   _T __value = *__first;
  72.   while (++__first != __last) {
  73.     __value = __value + *__first;
  74.     *++__result = __value;
  75.   }
  76.   return ++__result;
  77. }
  78. template <class _InputIterator, class _OutputIterator>
  79. _OutputIterator 
  80. partial_sum(_InputIterator __first, _InputIterator __last,
  81.             _OutputIterator __result)
  82. {
  83.   if (__first == __last) return __result;
  84.   *__result = *__first;
  85.   return __partial_sum(__first, __last, __result, __VALUE_TYPE(__first));
  86. }
  87. template <class _InputIterator, class _OutputIterator, class _T,
  88.           class _BinaryOperation>
  89. _OutputIterator 
  90. __partial_sum(_InputIterator __first, _InputIterator __last, 
  91.               _OutputIterator __result, _T*, _BinaryOperation __binary_op)
  92. {
  93.   _T __value = *__first;
  94.   while (++__first != __last) {
  95.     __value = __binary_op(__value, *__first);
  96.     *++__result = __value;
  97.   }
  98.   return ++__result;
  99. }
  100. template <class _InputIterator, class _OutputIterator, class _BinaryOperation>
  101. _OutputIterator 
  102. partial_sum(_InputIterator __first, _InputIterator __last,
  103.             _OutputIterator __result, _BinaryOperation __binary_op)
  104. {
  105.   if (__first == __last) return __result;
  106.   *__result = *__first;
  107.   return __partial_sum(__first, __last, __result, __VALUE_TYPE(__first), 
  108.                        __binary_op);
  109. }
  110. template <class _InputIterator, class _OutputIterator, class _T>
  111. _OutputIterator 
  112. __adjacent_difference(_InputIterator __first, _InputIterator __last,
  113.                       _OutputIterator __result, _T*)
  114. {
  115.   _T __value = *__first;
  116.   while (++__first != __last) {
  117.     _T __tmp = *__first;
  118.     *++__result = __tmp - __value;
  119.     __value = __tmp;
  120.   }
  121.   return ++__result;
  122. }
  123. template <class _InputIterator, class _OutputIterator>
  124. _OutputIterator
  125. adjacent_difference(_InputIterator __first,
  126.                     _InputIterator __last, _OutputIterator __result)
  127. {
  128.   if (__first == __last) return __result;
  129.   *__result = *__first;
  130.   return __adjacent_difference(__first, __last, __result,
  131.                                __VALUE_TYPE(__first));
  132. }
  133. template <class _InputIterator, class _OutputIterator, class _T, 
  134.           class _BinaryOperation>
  135. _OutputIterator
  136. __adjacent_difference(_InputIterator __first, _InputIterator __last, 
  137.                       _OutputIterator __result, _T*,
  138.                       _BinaryOperation __binary_op) {
  139.   _T __value = *__first;
  140.   while (++__first != __last) {
  141.     _T __tmp = *__first;
  142.     *++__result = __binary_op(__tmp, __value);
  143.     __value = __tmp;
  144.   }
  145.   return ++__result;
  146. }
  147. template <class _InputIterator, class _OutputIterator, class _BinaryOperation>
  148. _OutputIterator 
  149. adjacent_difference(_InputIterator __first, _InputIterator __last,
  150.                     _OutputIterator __result, _BinaryOperation __binary_op)
  151. {
  152.   if (__first == __last) return __result;
  153.   *__result = *__first;
  154.   return __adjacent_difference(__first, __last, __result,
  155.                                __VALUE_TYPE(__first),
  156.                                __binary_op);
  157. }
  158. // Returns __x ** __n, where __n >= 0.  _Note that "multiplication"
  159. // is required to be associative, but not necessarily commutative.
  160.  
  161. template <class _T, class _Integer, class _MonoidOperation>
  162. _T __power(_T __x, _Integer __n, _MonoidOperation __opr)
  163. {
  164.   if (__n == 0)
  165.     return identity_element(__opr);
  166.   else {
  167.     while ((__n & 1) == 0) {
  168.       __n >>= 1;
  169.       __x = __opr(__x, __x);
  170.     }
  171.     _T __result = __x;
  172.     __n >>= 1;
  173.     while (__n != 0) {
  174.       __x = __opr(__x, __x);
  175.       if ((__n & 1) != 0)
  176.         __result = __opr(__result, __x);
  177.       __n >>= 1;
  178.     }
  179.     return __result;
  180.   }
  181. }
  182. template <class _T, class _Integer>
  183. inline _T __power(_T __x, _Integer __n)
  184. {
  185.   return __power(__x, __n, multiplies<_T>());
  186. }
  187. // Alias for the internal name __power.  Note that power is an extension,
  188. // not part of the C++ standard.
  189. template <class _T, class _Integer, class _MonoidOperation>
  190. inline _T power(_T __x, _Integer __n, _MonoidOperation __opr)
  191. {
  192.   return __power(__x, __n, __opr);
  193. }
  194. template <class _T, class _Integer>
  195. inline _T power(_T __x, _Integer __n)
  196. {
  197.   return __power(__x, __n);
  198. }
  199. // iota is not part of the C++ standard.  It is an extension.
  200. template <class _ForwardIterator, class _T>
  201. void 
  202. iota(_ForwardIterator __first, _ForwardIterator __last, _T __value)
  203. {
  204.   while (__first != __last)
  205.     *__first++ = __value++;
  206. }
  207. __STL_END_NAMESPACE
  208. #endif /* __SGI_STL_INTERNAL_NUMERIC_H */
  209. // Local Variables:
  210. // mode:C++
  211. // End: