Learning boost 3 -- string algorithm 1[29]

[入库:2005年8月19日] [更新:2007年3月24日]

本文简介:选择自 heroboy2000 的 blog

上述的算法都很简单,我就不多说了。

我来分析一下find_firstfind_first的源代码是这样的:

template<typename collection1t, typename collection2t>

        inline iterator_range<

            boost_string_typename result_iterator_of<collection1t>::type>

        find_first(

            collection1t& input,

            const collection2t& search)

        {

            return first_finder(search)(

                begin(input),end(input));

        }

本文关键:Learning boost 3 -- string algorithm 1
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top