亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stl_algobase.h

?? 粗慥集成算法集合 ,并有詳細的文檔資料和測試數據處
?? H
?? 第 1 頁 / 共 2 頁
字號:
__SGI_STL_DECLARE_COPY_TRIVIAL(unsigned int)
__SGI_STL_DECLARE_COPY_TRIVIAL(long)
__SGI_STL_DECLARE_COPY_TRIVIAL(unsigned long)
#if !defined(__STL_NO_WCHAR_T) && !defined (__STL_WCHAR_T_IS_USHORT) 
__SGI_STL_DECLARE_COPY_TRIVIAL(wchar_t)
#endif
#ifdef _STL_LONG_LONG
__SGI_STL_DECLARE_COPY_TRIVIAL(long long)
__SGI_STL_DECLARE_COPY_TRIVIAL(unsigned long long)
#endif 
__SGI_STL_DECLARE_COPY_TRIVIAL(float)
__SGI_STL_DECLARE_COPY_TRIVIAL(double)
# ifndef __STL_NO_LONG_DOUBLE
__SGI_STL_DECLARE_COPY_TRIVIAL(long double)
# endif
#undef __SGI_STL_DECLARE_COPY_TRIVIAL

#endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */

//--------------------------------------------------
// copy_backward

template <class _BidirectionalIter1, class _BidirectionalIter2, 
          class _Distance>
inline _BidirectionalIter2 __copy_backward(_BidirectionalIter1 __first, 
                                           _BidirectionalIter1 __last, 
                                           _BidirectionalIter2 __result,
                                           bidirectional_iterator_tag,
                                           _Distance*)
{
  while (__first != __last)
    *--__result = *--__last;
  return __result;
}

template <class _RandomAccessIter, class _BidirectionalIter, class _Distance>
inline _BidirectionalIter __copy_backward(_RandomAccessIter __first, 
                                          _RandomAccessIter __last, 
                                          _BidirectionalIter __result,
                                          random_access_iterator_tag,
                                          _Distance*)
{
  for (_Distance __n = __last - __first; __n > 0; --__n)
    *--__result = *--__last;
  return __result;
}

#ifdef __STL_CLASS_PARTIAL_SPECIALIZATION 

// This dispatch class is a workaround for compilers that do not 
// have partial ordering of function templates.  All we're doing is
// creating a specialization so that we can turn a call to copy_backward
// into a memmove whenever possible.

template <class _BidirectionalIter1, class _BidirectionalIter2,
          class _BoolType>
struct __copy_backward_dispatch
{
  typedef typename iterator_traits<_BidirectionalIter1>::iterator_category 
          _Cat;
  typedef typename iterator_traits<_BidirectionalIter1>::difference_type
          _Distance;

  static _BidirectionalIter2 copy(_BidirectionalIter1 __first, 
                                  _BidirectionalIter1 __last, 
                                  _BidirectionalIter2 __result) {
    return __copy_backward(__first, __last, __result, _Cat(), (_Distance*) 0);
  }
};

template <class _Tp>
struct __copy_backward_dispatch<_Tp*, _Tp*, __true_type>
{
  static _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) {
    const ptrdiff_t _Num = __last - __first;
    memmove(__result - _Num, __first, sizeof(_Tp) * _Num);
    return __result - _Num;
  }
};

template <class _Tp>
struct __copy_backward_dispatch<const _Tp*, _Tp*, __true_type>
{
  static _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) {
    return  __copy_backward_dispatch<_Tp*, _Tp*, __true_type>
      ::copy(__first, __last, __result);
  }
};

template <class _BI1, class _BI2>
inline _BI2 copy_backward(_BI1 __first, _BI1 __last, _BI2 __result) {
  typedef typename __type_traits<typename iterator_traits<_BI2>::value_type>
                        ::has_trivial_assignment_operator
          _Trivial;
  return __copy_backward_dispatch<_BI1, _BI2, _Trivial>
              ::copy(__first, __last, __result);
}

#else /* __STL_CLASS_PARTIAL_SPECIALIZATION */

template <class _BI1, class _BI2>
inline _BI2 copy_backward(_BI1 __first, _BI1 __last, _BI2 __result) {
  return __copy_backward(__first, __last, __result,
                         __ITERATOR_CATEGORY(__first),
                         __DISTANCE_TYPE(__first));
}

#endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */

//--------------------------------------------------
// copy_n (not part of the C++ standard)

template <class _InputIter, class _Size, class _OutputIter>
__STL_INLINE_LOOP 
pair<_InputIter, _OutputIter> __copy_n(_InputIter __first, _Size __count,
                                       _OutputIter __result,
                                       input_iterator_tag) {
  for ( ; __count > 0; --__count) {
    *__result = *__first;
    ++__first;
    ++__result;
  }
  return pair<_InputIter, _OutputIter>(__first, __result);
}

template <class _RAIter, class _Size, class _OutputIter>
inline pair<_RAIter, _OutputIter>
__copy_n(_RAIter __first, _Size __count,
         _OutputIter __result,
         random_access_iterator_tag) {
  _RAIter __last = __first + __count;
  return pair<_RAIter, _OutputIter>(__last, copy(__first, __last, __result));
}

template <class _InputIter, class _Size, class _OutputIter>
inline pair<_InputIter, _OutputIter>
__copy_n(_InputIter __first, _Size __count, _OutputIter __result) {
  return __copy_n(__first, __count, __result,
                  __ITERATOR_CATEGORY(__first));
}

template <class _InputIter, class _Size, class _OutputIter>
inline pair<_InputIter, _OutputIter>
copy_n(_InputIter __first, _Size __count, _OutputIter __result) {
  __STL_FIX_LITERAL_BUG(__first)
  return __copy_n(__first, __count, __result);
}

//--------------------------------------------------
// fill and fill_n


template <class _ForwardIter, class _Tp>
__STL_INLINE_LOOP
void fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __value) {
  for ( ; __first != __last; ++__first)
    *__first = __value;
}

template <class _OutputIter, class _Size, class _Tp>
__STL_INLINE_LOOP
_OutputIter fill_n(_OutputIter __first, _Size __n, const _Tp& __value) {
  __STL_FIX_LITERAL_BUG(__first)
  for ( ; __n > 0; --__n, ++__first)
    *__first = __value;
  return __first;
}

//--------------------------------------------------
// equal and mismatch

template <class _InputIter1, class _InputIter2>
__STL_INLINE_LOOP
pair<_InputIter1, _InputIter2> mismatch(_InputIter1 __first1,
                                        _InputIter1 __last1,
                                        _InputIter2 __first2) {
  __STL_FIX_LITERAL_BUG(__first2)
  while (__first1 != __last1 && *__first1 == *__first2) {
    ++__first1;
    ++__first2;
  }
  return pair<_InputIter1, _InputIter2>(__first1, __first2);
}

template <class _InputIter1, class _InputIter2, class _BinaryPredicate>
__STL_INLINE_LOOP
pair<_InputIter1, _InputIter2> mismatch(_InputIter1 __first1,
                                        _InputIter1 __last1,
                                        _InputIter2 __first2,
                                        _BinaryPredicate __binary_pred) {
  __STL_FIX_LITERAL_BUG(__first2)
  while (__first1 != __last1 && __binary_pred(*__first1, *__first2)) {
    ++__first1;
    ++__first2;
  }
  return pair<_InputIter1, _InputIter2>(__first1, __first2);
}

template <class _InputIter1, class _InputIter2>
__STL_INLINE_LOOP
bool equal(_InputIter1 __first1, _InputIter1 __last1,
                  _InputIter2 __first2) {
  __STL_FIX_LITERAL_BUG(__first1) __STL_FIX_LITERAL_BUG(__last1)  __STL_FIX_LITERAL_BUG(__first2)
  for ( ; __first1 != __last1; ++__first1, ++__first2)
    if (*__first1 != *__first2)
      return false;
  return true;
}

template <class _InputIter1, class _InputIter2, class _BinaryPredicate>
__STL_INLINE_LOOP
bool equal(_InputIter1 __first1, _InputIter1 __last1,
                  _InputIter2 __first2, _BinaryPredicate __binary_pred) {
  __STL_FIX_LITERAL_BUG(__first2)
  for ( ; __first1 != __last1; ++__first1, ++__first2)
    if (!__binary_pred(*__first1, *__first2))
      return false;
  return true;
}

//--------------------------------------------------
// lexicographical_compare and lexicographical_compare_3way.
// (the latter is not part of the C++ standard.)

template <class _InputIter1, class _InputIter2>
bool lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1,
                             _InputIter2 __first2, _InputIter2 __last2);

template <class _InputIter1, class _InputIter2, class _Compare>
bool lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1,
                             _InputIter2 __first2, _InputIter2 __last2,
                             _Compare __comp);

inline bool 
lexicographical_compare(const unsigned char* __first1,
                        const unsigned char* __last1,
                        const unsigned char* __first2,
                        const unsigned char* __last2)
{
  const size_t __len1 = __last1 - __first1;
  const size_t __len2 = __last2 - __first2;
  const int __result = memcmp(__first1, __first2, min(__len1, __len2));
  return __result != 0 ? __result < 0 : __len1 < __len2;
}

inline bool lexicographical_compare(const char* __first1, const char* __last1,
                                    const char* __first2, const char* __last2)
{
#if CHAR_MAX == SCHAR_MAX
  return lexicographical_compare((const signed char*) __first1,
                                 (const signed char*) __last1,
                                 (const signed char*) __first2,
                                 (const signed char*) __last2);
#else /* CHAR_MAX == SCHAR_MAX */
  return lexicographical_compare((const unsigned char*) __first1,
                                 (const unsigned char*) __last1,
                                 (const unsigned char*) __first2,
                                 (const unsigned char*) __last2);
#endif /* CHAR_MAX == SCHAR_MAX */
}

template <class _InputIter1, class _InputIter2>
int __lexicographical_compare_3way(_InputIter1 __first1, _InputIter1 __last1,
                                   _InputIter2 __first2, _InputIter2 __last2);

inline int
__lexicographical_compare_3way(const unsigned char* __first1,
                               const unsigned char* __last1,
                               const unsigned char* __first2,
                               const unsigned char* __last2)
{
  const ptrdiff_t __len1 = __last1 - __first1;
  const ptrdiff_t __len2 = __last2 - __first2;
  const int __result = memcmp(__first1, __first2, min(__len1, __len2));
  return __result != 0 ? __result 
                       : (__len1 == __len2 ? 0 : (__len1 < __len2 ? -1 : 1));
}

inline int 
__lexicographical_compare_3way(const char* __first1, const char* __last1,
                               const char* __first2, const char* __last2)
{
#if CHAR_MAX == SCHAR_MAX
  return __lexicographical_compare_3way(
                                (const signed char*) __first1,
                                (const signed char*) __last1,
                                (const signed char*) __first2,
                                (const signed char*) __last2);
#else
  return __lexicographical_compare_3way((const unsigned char*) __first1,
                                        (const unsigned char*) __last1,
                                        (const unsigned char*) __first2,
                                        (const unsigned char*) __last2);
#endif
}

template <class _InputIter1, class _InputIter2>
int lexicographical_compare_3way(_InputIter1 __first1, _InputIter1 __last1,
                                 _InputIter2 __first2, _InputIter2 __last2);

__STL_END_NAMESPACE

# if !defined (__STL_LINK_TIME_INSTANTIATION)
#  include <stl_algobase.c>
# endif

#endif /* __SGI_STL_INTERNAL_ALGOBASE_H */

// Local Variables:
// mode:C++
// End:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av网站在线观看| 欧美乱妇20p| 日韩欧美一级精品久久| 国产精品久久久一本精品| 日本不卡在线视频| 色综合久久久久久久久| www成人在线观看| 婷婷六月综合网| 91婷婷韩国欧美一区二区| 日韩女优av电影| 亚洲国产日韩a在线播放| 成人av网址在线| 国产喂奶挤奶一区二区三区| 日本不卡123| 欧美日韩国产天堂| 亚洲婷婷在线视频| 国产高清成人在线| 久久久激情视频| 国内久久精品视频| 精品成人a区在线观看| 欧美aaaaa成人免费观看视频| 91久久国产最好的精华液| 国产精品第四页| 波多野结衣亚洲| 国产精品乱码一区二区三区软件| 国产一区二区三区免费播放| 日韩一区二区在线观看| 日韩中文字幕av电影| 欧美视频在线一区| 亚洲午夜精品17c| 欧美午夜电影一区| 亚洲国产综合91精品麻豆| 色香色香欲天天天影视综合网 | 成人免费视频国产在线观看| 国产婷婷色一区二区三区在线| 久久国内精品视频| 精品人在线二区三区| 国产自产高清不卡| 国产午夜亚洲精品理论片色戒 | 中文字幕+乱码+中文字幕一区| 国产精品中文字幕欧美| 久久亚洲精品国产精品紫薇| 国产91在线|亚洲| 中文字幕综合网| 在线观看日韩精品| 日韩av一级电影| 久久亚洲精品小早川怜子| 成人自拍视频在线观看| 亚洲免费在线观看视频| 欧美精品黑人性xxxx| 理论电影国产精品| 国产三级三级三级精品8ⅰ区| 波多野结衣在线aⅴ中文字幕不卡| 亚洲黄一区二区三区| 欧美一级精品大片| 国产高清不卡一区| 亚洲国产精品人人做人人爽| 欧美电影免费观看完整版| 成人黄色777网| 午夜精品免费在线| 国产欧美一区二区三区网站| 欧美在线免费观看视频| 视频一区在线视频| 国产精品无遮挡| 欧美日韩第一区日日骚| 国产一区二区日韩精品| 一区二区三区四区视频精品免费| 日韩亚洲欧美成人一区| 97精品电影院| 久久成人免费网站| 一区二区三区中文免费| www国产成人| 制服丝袜av成人在线看| 成人h精品动漫一区二区三区| 亚洲一区二区偷拍精品| 日本一区二区高清| 日韩欧美你懂的| 色中色一区二区| 国产精品99久久久久久似苏梦涵 | 日韩视频一区二区三区| av中文字幕不卡| 久久99精品久久久久久国产越南 | 黄色日韩三级电影| 亚洲欧美区自拍先锋| 久久久午夜精品| 欧美久久久久免费| 成人免费黄色在线| 国内精品视频666| 日韩电影网1区2区| 亚洲免费电影在线| 国产精品福利av| 日本一区二区三区在线观看| 欧美电视剧在线观看完整版| 欧美色老头old∨ideo| 一本久道中文字幕精品亚洲嫩 | 视频一区欧美日韩| 亚洲综合成人在线视频| 国产精品国产三级国产aⅴ无密码| 欧美午夜片在线看| 欧洲人成人精品| 色偷偷88欧美精品久久久| 99精品国产99久久久久久白柏| 国产精品一区二区黑丝| 久久99久久99| 国内成+人亚洲+欧美+综合在线| 五月天亚洲婷婷| 三级影片在线观看欧美日韩一区二区| 亚洲欧美另类久久久精品| 国产精品无码永久免费888| 中文字幕av免费专区久久| 国产色综合久久| 国产精品久久久久国产精品日日| 久久欧美一区二区| 国产日韩在线不卡| 国产精品网友自拍| 综合色天天鬼久久鬼色| 亚洲老妇xxxxxx| 亚洲国产成人av| 麻豆成人久久精品二区三区红 | 99精品久久久久久| 91一区二区三区在线观看| 91麻豆成人久久精品二区三区| 91视频观看免费| 欧美日韩一级片网站| 91麻豆精品国产91久久久久久| 欧美精品aⅴ在线视频| 精品区一区二区| 国产精品午夜免费| 亚洲综合色噜噜狠狠| 青青草国产精品亚洲专区无| 久久99最新地址| 99久久精品国产毛片| 欧美日韩一二三区| 欧美成人女星排名| 久久久国产精品不卡| 亚洲色图色小说| 首页欧美精品中文字幕| 国产精品一级黄| 91免费版pro下载短视频| 欧美电影一区二区| 国产清纯美女被跳蛋高潮一区二区久久w| 久久久.com| 亚洲一区二区欧美激情| 黑人精品欧美一区二区蜜桃| 成人少妇影院yyyy| 欧美日韩国产一区| 欧美激情中文字幕| 午夜精品成人在线视频| 国产寡妇亲子伦一区二区| 色妞www精品视频| 精品国产不卡一区二区三区| 中文字幕在线不卡| 日韩av网站在线观看| av不卡在线播放| 欧美不卡一区二区三区| 亚洲欧美国产毛片在线| 国产综合成人久久大片91| 在线看日本不卡| 国产亚洲1区2区3区| 日韩精品成人一区二区在线| 99在线精品视频| 日韩精品一区在线观看| 亚洲九九爱视频| 成人美女在线视频| 欧美sm极限捆绑bd| 五月婷婷激情综合| 豆国产96在线|亚洲| 91麻豆福利精品推荐| 精品国产免费一区二区三区香蕉| 亚洲欧美日韩在线播放| 国产乱子伦一区二区三区国色天香 | 午夜精品爽啪视频| www.欧美色图| 欧美tickling挠脚心丨vk| 亚洲成人av一区二区三区| a在线欧美一区| 国产女主播视频一区二区| 日本中文一区二区三区| 欧美色老头old∨ideo| 亚洲人一二三区| 成人一区二区三区在线观看| 精品久久一区二区三区| 视频精品一区二区| 欧美日韩国产一区二区三区地区| 亚洲伦理在线精品| 91免费小视频| 中文字幕成人av| 高清不卡一区二区在线| 久久久www成人免费无遮挡大片 | 不卡一区二区在线| 国产调教视频一区| 激情综合网最新| 久久精品亚洲精品国产欧美kt∨| 久久激情五月激情| 日韩一卡二卡三卡国产欧美| 人人狠狠综合久久亚洲| 91麻豆精品国产91久久久资源速度 | 亚洲欧美日本在线| 91免费观看视频在线| 一区二区在线观看不卡|