<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/ch9/bd58/0840933b-b8bb-4310-ac04-9e060123bd58/C9LecturesSTLonSTLp7_100_ch9.jpg</url>
		<title>Channel 9 - C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<link></link>
	</image>
	<description>Welcome to another installment of C9 Lectures covering the powerful general C&amp;#43;&amp;#43; library, STL. Joining us once again is the great Stephan T. Lavavej, Microsoft&#39;s keeper of the STL cloth (this means he manages the partnership between the owners of STL (dinkumware) and Microsoft, including, of course, bug fixes and enhancements to the STL that ships as part of Visual C&amp;#43;&amp;#43;). Simply, Stephan is a C&amp;#43;&amp;#43; library developer.As is Stephan&#39;s nature, he elaborates on technical details in very substantive way. The Standard Template Library, orSTL, is a C&amp;#43;&amp;#43; library of container classes, algorithms, and iterators. STL provides many fundamental algorithms and data structures. Furthermore, the STL is a general-purpose library: its components are heavily parameterized, such that almost every component in the STL is a template. In part 7, Stephan continues to dig into STL algorithms, specifically insert&amp;nbsp;iterators, sorting and related functions.Enjoy! Learn!Books mentioned by Stephen: The C&amp;#43;&amp;#43; Standard Library: A Tutorial And Reference by Nicolai M. JosuttisEffective STL by Scott Meyers [STL Introduction lecture links] Part 1 (sequence containers) Part 2 (associative containers) Part 3 (smart pointers) Part 4 (Nurikabe solver) - see Wikipedia&#39;s article and Stephan&#39;s updated source code Part 5 (Nurikabe solver, continued) Part 6 (algorithms and functors) Part 7 (algorithms and functors, continued) Part 8 (regular expressions) Part 9 (rvalue references) Part 10 (type traits) </description>
	<link></link>
	<language>en</language>
	<pubDate>Fri, 24 May 2013 18:38:40 GMT</pubDate>
	<lastBuildDate>Fri, 24 May 2013 18:38:40 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Why does the MinMax function have that complexity?</p><p><pre class="brush: text">FUNCTION: MinMax( seq, comparer_lessthan) --&gt; pair(,)
_min = seq.begin
_max = seq.begin
for each element in seq
if comparer_lessthan(element, _min) then _min=element
if comparer_lessthan(_max,element) then _max=element
next
return new pair(_min,_max)</pre></p><p>O(n)</p><p>&nbsp;</p><p>or if the STL would let you do</p><p><pre class="brush: text">FUNCTION: MinMax( seq, comparer_lessthan) --&gt; pair(,)
_min = LB(seq.begin,seq.end)
_max = _min &#43; UB(_min.begin, seq.end)
return new pair(_min,_max)</pre></p><p>Best Case: O(log n) &nbsp;' both are the last element.</p><p>Worst Case:&nbsp;O(2 log n) ' first and last elements.</p><p>Average Case: 0( (2 log n) / 3)</p><p>If I've missed something in the algorithms implementation, could you point be to a source (as I would be interesting in look at it.)&nbsp;</p><p>posted by AdamSpeight2008</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233847380000000</link>
		<pubDate>Fri, 22 Oct 2010 22:52:18 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233847380000000</guid>
		<dc:creator>AdamSpeight2008</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Because binary search only works on sorted ranges?&nbsp;<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></p><p>posted by NotFredSafe</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233852390000000</link>
		<pubDate>Fri, 22 Oct 2010 23:00:39 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233852390000000</guid>
		<dc:creator>NotFredSafe</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>minmax_element() has O(N) asymptotic complexity, but it provides an exact complexity guarantee that's even better. Your first implementation performs 2N comparisons. The STL performs at most 1.5N comparisons. See <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3126.pdf">http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3126.pdf</a>&nbsp;25.4.7 [alg.min.max]/36.</p><p>As for your second implementation, lower_bound() and upper_bound() require sorted sequences, while minmax_element() accepts arbitrary sequences. Finding the minimum and maximum of a sorted sequence can be done in O(1) time. :-&gt;</p><p><strong></strong></p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233853510000000</link>
		<pubDate>Fri, 22 Oct 2010 23:02:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233853510000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Stephan, at 6:39 you write *it&#43;&#43; = elem. I wonder if this code is indeed well-defined for output iterators and opened a <a href="http://stackoverflow.com/questions/4001517/how-is-it-valid-for-output-iterators">question on stack overflow</a>. Could you comment on this issue? Thanks!</p><p>posted by NotFredSafe</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233856680000000</link>
		<pubDate>Fri, 22 Oct 2010 23:07:48 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233856680000000</guid>
		<dc:creator>NotFredSafe</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>I made slight booboo in the algorithm I forgot to add the element you are looking for.</p><p>Can't get link to work, Timestamp 33m00</p><p>The section where you are on about the lower and upper bounds of a group of elements (equal to the value you're looking for) in a sorted sequence y.</p><p>Not the lowest and highest values.</p><p><pre class="brush: text">FUNCTION: MinMax( seq, comparer_lessthan, value) --&gt; pair(,)
_min = LB(seq.begin,seq.end,value)
_max = _min &#43; UB(_min.begin, seq.end,value)
return new pair(_min,_max)</pre></p><p>posted by AdamSpeight2008</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233866410000000</link>
		<pubDate>Fri, 22 Oct 2010 23:24:01 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233866410000000</guid>
		<dc:creator>AdamSpeight2008</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>That's straight out of the Output Iterator requirements. N3126 24.2.4 [output.iterators] Table 105 &quot;Output iterator requirements (in addition to Iterator)&quot; contains &quot;*r&#43;&#43; = o&quot;.</p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233867280000000</link>
		<pubDate>Fri, 22 Oct 2010 23:25:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233867280000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>AdamSpeight2008: You're thinking of equal_range(), which is required to behave as if it returns make_pair(lower_bound(first, last, value), upper_bound(first, last, value)), and is required to perform at most 2 * log2(last - first) &#43; O(1) comparisons (N3126 25.4.3.3 [equal.range]/2-3).</p><p>STL implementations are permitted to perform fewer comparisons, and ours does.</p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233879520000000</link>
		<pubDate>Fri, 22 Oct 2010 23:45:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233879520000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Ah! I see where the _min iterator would be affected, so let's say a copy is passed to UB.</p><p>Let see if I've got this right minmax_element returns the smallest and largest element from an underordered sequece?&nbsp;</p><p>&nbsp;</p><p>posted by AdamSpeight2008</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233891450000000</link>
		<pubDate>Sat, 23 Oct 2010 00:05:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233891450000000</guid>
		<dc:creator>AdamSpeight2008</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>I found out hows it is implemented,</p><p>posted by AdamSpeight2008</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233906540000000</link>
		<pubDate>Sat, 23 Oct 2010 00:30:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233906540000000</guid>
		<dc:creator>AdamSpeight2008</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Here's an example:</p><p><pre class="brush: cpp">C:\Temp&gt;type meow.cpp
#include &lt;algorithm&gt;
#include &lt;array&gt;
#include &lt;iostream&gt;
#include &lt;iterator&gt;
#include &lt;ostream&gt;
#include &lt;string&gt;
#include &lt;vector&gt;
using namespace std;

template &lt;typename FwdIt&gt; void print_minmax(FwdIt first, FwdIt last) {
    const auto p = minmax_element(first, last);

    cout &lt;&lt; &quot;Minimum element (&quot; &lt;&lt; *p.first &lt;&lt; &quot;) found at index &quot; &lt;&lt; distance(first, p.first) &lt;&lt; endl;
    cout &lt;&lt; &quot;Maximum element (&quot; &lt;&lt; *p.second &lt;&lt; &quot;) found at index &quot; &lt;&lt; distance(first, p.second) &lt;&lt; endl;
}

template &lt;typename FwdIt, typename Comp&gt; void print_minmax(FwdIt first, FwdIt last, Comp comp) {
    const auto p = minmax_element(first, last, comp);

    cout &lt;&lt; &quot;Minimum element (&quot; &lt;&lt; *p.first &lt;&lt; &quot;) found at index &quot; &lt;&lt; distance(first, p.first) &lt;&lt; endl;
    cout &lt;&lt; &quot;Maximum element (&quot; &lt;&lt; *p.second &lt;&lt; &quot;) found at index &quot; &lt;&lt; distance(first, p.second) &lt;&lt; endl;
}

int main() {
    const array&lt;int, 25&gt; a = {
        83, 79, 13, 17, 53, 59, 29, 2, 37, 11, 47, 97, 19, 31, 5, 43, 41, 89, 73, 7, 3, 23, 67, 61, 71 };

    print_minmax(a.begin(), a.end());

    vector&lt;string&gt; v;
    v.push_back(&quot;The Eye of the World&quot;);
    v.push_back(&quot;The Great Hunt&quot;);
    v.push_back(&quot;The Dragon Reborn&quot;);
    v.push_back(&quot;The Shadow Rising&quot;);
    v.push_back(&quot;The Fires of Heaven&quot;);
    v.push_back(&quot;Lord of Chaos&quot;);
    v.push_back(&quot;A Crown of Swords&quot;);
    v.push_back(&quot;The Path of Daggers&quot;);
    v.push_back(&quot;Winter's Heart&quot;);
    v.push_back(&quot;Crossroads of Twilight&quot;);
    v.push_back(&quot;Knife of Dreams&quot;);
    v.push_back(&quot;The Gathering Storm&quot;);
    v.push_back(&quot;Towers of Midnight&quot;);
    v.push_back(&quot;A Memory of Light&quot;);

    print_minmax(v.cbegin(), v.cend(), [](const string&amp; l, const string&amp; r) { return l.size() &lt; r.size(); });
}

C:\Temp&gt;cl /EHsc /nologo /W4 meow.cpp
meow.cpp

C:\Temp&gt;meow
Minimum element (2) found at index 7
Maximum element (97) found at index 11
Minimum element (Lord of Chaos) found at index 5
Maximum element (Crossroads of Twilight) found at index 9</pre></p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233942240000000</link>
		<pubDate>Sat, 23 Oct 2010 01:30:24 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634233942240000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Just thank you, STL</p><p>posted by Spetum</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234533730000000</link>
		<pubDate>Sat, 23 Oct 2010 17:56:13 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234533730000000</guid>
		<dc:creator>Spetum</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[Same here :)<br />&nbsp;<br />Stephan, are you going to tell us everything about functors in a next episode?<p>posted by Garp</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234647370000000</link>
		<pubDate>Sat, 23 Oct 2010 21:05:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234647370000000</guid>
		<dc:creator>Garp</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>There's always more to tell. I'm getting close to exhausting the simple topics, so it's probably time to begin introducing C&#43;&#43;0x features. Lambdas (which I've shown a little), perfect forwarding, and perfect returning are all relevant to functors.</p><p>Is there anything else that people want to see?</p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234942310000000</link>
		<pubDate>Sun, 24 Oct 2010 05:17:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234942310000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>@<a href="/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234942310000000">STL</a>:</p><p>Good interesting stuff as always &nbsp;<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p><p><br>&gt;&nbsp;Is there anything else that people want to see?</p><p>1. perhaps a how to and how not to write ex a base64 encoder/decoder that interacts with the stl streams&nbsp;</p><p>2. (perhaps this is more of a question) when to use lambdas and when to use bind, bind2nd, mem_fn.</p><p>i've read that lambdas can replace these functions but when should you use functions like&nbsp;bind, bind2nd,mem_fn. instead of lambdas ?</p><p>3. Talk more about common mistakes / gotchas</p><p>4. How to optimize the usage of STL, ex making sure you use the right container/algorithm for the right job, etc..</p><p>5. How not to use the STL, guess this is the same as 3.</p><p>6. How to add new features /&nbsp;functionality&nbsp;to complement the STL.. ( connected with 1. )</p><p>&nbsp;</p><p>How about that ? &nbsp;<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' />&nbsp; <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /> </p><p>&nbsp;</p><p>&nbsp;</p><form class="spam" action="http://channel9.msdn.com/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n/634234942310000000/IsSpam" method="POST"></form><p>posted by Mr Crash</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634235086790000000</link>
		<pubDate>Sun, 24 Oct 2010 09:17:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634235086790000000</guid>
		<dc:creator>Mr Crash</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>At least the need for manual loops has almost been completely eliminated <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' />.</p><p><pre class="brush: cpp">
int main (int argc, char *argv[])
{    
    unsigned int fact = 0;
    cout &lt;&lt; endl &lt;&lt; &quot;What factorial do you want to calculate?  &quot;;
    cin &gt;&gt; fact;    
    vector &lt;unsigned int&gt; vec(fact);
    iota (vec.begin(), vec.end(), 1);
    cout &lt;&lt; endl;
    cout &lt;&lt; &quot;Factorial is: &quot; &lt;&lt; accumulate (vec.begin(), vec.end(), 1, multiplies&lt;unsigned int&gt;() );
    cout &lt;&lt; endl;
    return 0;
}</pre></p><p>I've been spraining my brain recently with how to implement Shear-sort, its absolutely cool,entertaining and fast. &nbsp;Shell &amp; Radix soort used to be my favs, but now its shearsort. &nbsp;Have a look at it, you also may find it fairly entertaining.</p><p>posted by HeavensRevenge</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634235536520000000</link>
		<pubDate>Sun, 24 Oct 2010 21:47:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634235536520000000</guid>
		<dc:creator>HeavensRevenge</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>@<a href="/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234942310000000">STL</a>: I/O handle, Socket, file Processing in the STL(Standard Template Library)..</p><p>But I'd like to close and learn to the &quot;vector, string&quot; and Lambda expression for char* processing.</p><p>As well, furthermore , Stephan tries to emphasize that &quot;C&#43;&#43;(STL) is more effective and efficient than other languages.&quot; just my hope or wish..</p><p>Thank you for your lectures.</p><p>posted by Spetum</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634235641660000000</link>
		<pubDate>Mon, 25 Oct 2010 00:42:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634235641660000000</guid>
		<dc:creator>Spetum</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>@<a href="/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234942310000000">STL</a>: Template metaprogramming, as mentioned in the previous Video comments (you answered that it might be in part 8 <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' />)</p><p>posted by Deraynger</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634235922810000000</link>
		<pubDate>Mon, 25 Oct 2010 08:31:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634235922810000000</guid>
		<dc:creator>Deraynger</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>@<a href="/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634234942310000000">STL</a>: Thanks for another great lecture.</p><p>&gt;&nbsp;Is there anything else that people want to see?</p><p>Aside from what you've just&nbsp;mentioned, I'd like clarification on using&nbsp;r-value reference.&nbsp; MSDN&nbsp;help doesn't really show how to use it effectively, just syntactically.</p><p>posted by geeyef</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634236444370000000</link>
		<pubDate>Mon, 25 Oct 2010 23:00:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634236444370000000</guid>
		<dc:creator>geeyef</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Thanks for the suggestions!</p><p>[Mr Crash]<br>&gt; when to use lambdas and when to use bind, bind2nd, mem_fn.<br>&gt; i've read that lambdas can replace these functions but when should you use functions like bind, bind2nd,mem_fn. instead of lambdas ?</p><p>bind() supersedes bind1st() and bind2nd().<br>mem_fn() supersedes mem_fun() and mem_fun_ref().</p><p>But lambdas supersede all of them. Lambdas are easier to read, easier to write, and more efficient. In the few cases where lambdas aren't sufficient, you should use handwritten functors. (One case is a map's comparator, where you want an easily named and default-constructible type. Other cases include templated or recursive functors.)</p><p>[HeavensRevenge]<br>&gt; Shell &amp; Radix soort used to be my favs, but now its shearsort.</p><p>My favorite special-purpose sort uses a suffix tree to sort&nbsp;the suffixes of a string. A string of length N has N suffixes (&quot;meow&quot; has the suffixes &quot;meow&quot;, &quot;eow&quot;, &quot;ow&quot;, and &quot;w&quot;; one convention is to count the whole string, but not the empty string, as a suffix). Using a general-purpose sort takes O(N^2 log(N^2)) = O(2 * N^2 log(N)) = O(N^2 log(N)), which is slower than quadratic. (It would perform N log N comparisons, but each comparison takes O(N) time in the worst case; consider the string &quot;aaaaaaaab&quot;.) Suffix trees take O(N) time. That's not a typo, it really is linear time.</p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634236558940000000</link>
		<pubDate>Tue, 26 Oct 2010 02:11:34 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634236558940000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[@STL:<br />"Is there anything else that people want to see?"<br />Wide character support, e.g. wstring, wofstream etc.<br />Locales<p>posted by WalderFrey</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634237014510000000</link>
		<pubDate>Tue, 26 Oct 2010 14:50:51 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634237014510000000</guid>
		<dc:creator>WalderFrey</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>For general purpose, I believe the complexity of shearsort is something like O(n<sup>^1/2 (</sup>log n)) or equivalent to: <img src="http://imgur.com/xT9dL.png" alt="Shearsort" width="125" height="22"> Im glad my tablet functionality comes in handy every once in a while <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' /></p><p>But I AM quite pleased to have heard you mention that your STL implements an IntroSort <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /> its pretty awesome since SGI's STL implementation has IntroSort as the default too.</p><p>This URL is awesome since you can customize, this is how I compare sorts haha, when their bad implementation doesn't bug out of course <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-4.gif' alt='Tongue Out' /></p><p><a href="http://home.westman.wave.ca/~rhenry/sort/duel.php?width=600&amp;height=1000&amp;alg1=ShearSort&amp;alg2=IntroSort">http://home.westman.wave.ca/~rhenry/sort/duel.php?width=600&amp;height=1000&amp;alg1=ShearSort&amp;alg2=IntroSort</a></p><p>I made it be around screen width(each 600 wide), both sorts using 1000 entries to sort, Comparing side-by-side my new fav Shearsort with the also impressive IntroSort. The bigger N, the better Shearsort can do, since its complexity stays way down,&nbsp; and is excellently-parallel n-way per &quot;shear&quot;.</p><p>posted by HeavensRevenge</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634237137440000000</link>
		<pubDate>Tue, 26 Oct 2010 18:15:44 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634237137440000000</guid>
		<dc:creator>HeavensRevenge</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>[WalderFrey]<br>&gt; Wide character support, e.g. wstring, wofstream etc. Locales</p><p>Unfortunately, that's a complicated topic, I'm not an expert there (I know stuff, but I like to teach things only when I'm an expert), and iostreams/locales aren't part of the STL proper (string is a borderline case). So I don't think I'll be covering Unicode in this series.</p><p>[HeavensRevenge]<br>&gt; For general purpose, I believe the complexity of shearsort is something like O(n^1/2 (log n))</p><p>The best that a serial general-purpose sort can do is O(N log N). That's a theorem that CS students prove in Algorithms 101. std::sort() is now required by C&#43;&#43;0x to be worst-case O(N log N). In C&#43;&#43;98/03, it was permitted to be average O(N log N), worst-case O(N^2), i.e. the behavior of a plain quicksort.</p><p>The STL currently doesn't contain parallel algorithms. I've asked for parallel_sort() from the Concurrency Runtime team, but haven't gotten it yet. :-&gt;</p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634237288080000000</link>
		<pubDate>Tue, 26 Oct 2010 22:26:48 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634237288080000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[Recursive lambdas don't actually look so bad:<br />std::function&lt;int(int)&gt; factorial = [&amp;factorial](int n) -&gt; int {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return n &lt;= 1 ? 1 : n * factorial(n-1);};<br />std::cout &lt;&lt; factorial(4);<br />They do not work with "auto" however... And you couldn't just slap this inside an algorithm as you need to define a variable, and if you're doing that anyway you may as well just be making a named functor for it.<br />Source: http://cottonvibes.blogspot.com/2010/07/c0x-autos-lambdas-and-lambda-recursion.html<br />&nbsp;<p>posted by Michael Hamilton</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634239376400000000</link>
		<pubDate>Fri, 29 Oct 2010 08:27:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634239376400000000</guid>
		<dc:creator>Michael Hamilton</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[I would've much rather seen the standard library draft text on the monitor rather than your wm7 advertisement.<p>posted by blah</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634245603460000000</link>
		<pubDate>Fri, 05 Nov 2010 13:25:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634245603460000000</guid>
		<dc:creator>blah</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>If you watch carefully, near the end of the video,&nbsp;I accidentally brushed the TV's capacitive buttons with my arm, switching its input from my laptop (which has a background of the Carina Nebula)&nbsp;to one of the studio's computers (which has the background that you saw). I didn't even notice that this had happened until after I had finished recording the video, as my right eye is blind.</p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634246044910000000</link>
		<pubDate>Sat, 06 Nov 2010 01:41:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634246044910000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Didn't even realize that it was a mistake&nbsp;nor did I realize that your right eye is blind.</p><p>...impatiently waiting for your next video! Keep up these awesome videos!</p><p>posted by Deraynger</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634247939460000000</link>
		<pubDate>Mon, 08 Nov 2010 06:19:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634247939460000000</guid>
		<dc:creator>Deraynger</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p><blockquote><div class="quoteText"> </p><p>...impatiently waiting for your next video! Keep up these awesome videos!</p><p></p><p></div></blockquote></p><p>Seconded!</p><p>posted by NotFredSafe</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634248085790000000</link>
		<pubDate>Mon, 08 Nov 2010 10:22:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634248085790000000</guid>
		<dc:creator>NotFredSafe</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>On Friday (Nov 5), I filmed Part 8 (regex) and Part 9 (rvalue references). They'll be coming your way soon!</p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634248340450000000</link>
		<pubDate>Mon, 08 Nov 2010 17:27:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634248340450000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>@<a href="/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634248340450000000">STL</a>: Cool, that's great!</p><p>posted by Deraynger</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634248802330000000</link>
		<pubDate>Tue, 09 Nov 2010 06:17:13 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634248802330000000</guid>
		<dc:creator>Deraynger</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[@STL: &gt;&nbsp;Is there anything else that people want to see?How about making a simple yet&nbsp;extensible&nbsp;calculator using STLi think a lot the STL will come in handy.<br />What do you think about that suggestion ?<br />Keep the videos coming, please :)<p>posted by Sam</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634249259610000000</link>
		<pubDate>Tue, 09 Nov 2010 18:59:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634249259610000000</guid>
		<dc:creator>Sam</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Starting to feel the effects of withdrawal and it ain't pretty!</p><p>posted by Garp</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634249646430000000</link>
		<pubDate>Wed, 10 Nov 2010 05:44:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634249646430000000</guid>
		<dc:creator>Garp</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p><blockquote><div class="quoteText"> </p><p><a class="permalink" title="Comment Permalink" href="/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n/Unlock?commentSlug=634249646430000000">8 hours&nbsp;ago</a>, <a href="/Niners/Garp">Garp</a> wrote</p><p>Starting to feel the effects of withdrawal and it ain't pretty!</p><p>&nbsp;</p><p></div></blockquote> </p><p>Agreed, I need my STL fix <strong>now</strong>!</p><p>posted by NotFredSafe</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634249938750000000</link>
		<pubDate>Wed, 10 Nov 2010 13:51:15 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634249938750000000</guid>
		<dc:creator>NotFredSafe</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>10 days later, still no video <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-6.gif?v=c9' alt='Sad' /></p><p>posted by Deraynger</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634254133940000000</link>
		<pubDate>Mon, 15 Nov 2010 10:23:14 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634254133940000000</guid>
		<dc:creator>Deraynger</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p><blockquote><div class="quoteText"> </p><p><a class="permalink" title="Comment Permalink" href="/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n/Unlock?commentSlug=634254133940000000">8 hours&nbsp;ago</a>, <a href="/Niners/Deraynger">Deraynger</a> wrote</p><p>10 days later, still no video <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-6.gif?v=c9" alt="Sad"></p><p></p><p></div></blockquote></p><p>Oh well, the joy of anticipation... <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif?v=c9' alt='Wink' /> </p><p>posted by NotFredSafe</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634254450440000000</link>
		<pubDate>Mon, 15 Nov 2010 19:10:44 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634254450440000000</guid>
		<dc:creator>NotFredSafe</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p><blockquote><div class="quoteText"></p><p><a class="permalink" title="Comment Permalink" href="/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n/Unlock?commentSlug=634254450440000000">11 hours&nbsp;ago</a>, <a href="/Niners/NotFredSafe">NotFredSafe</a> wrote</p><p>*snip* </p><p>Oh well, the joy of anticipation... <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif?v=c9" alt="Wink"></p><p></div></blockquote></p><p>Yes, except that the joy could be in anticipation for the 9th Video, after having watched the&nbsp;8th video <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>posted by Deraynger</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634254866560000000</link>
		<pubDate>Tue, 16 Nov 2010 06:44:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634254866560000000</guid>
		<dc:creator>Deraynger</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>Oh Stephan, where art thou?</p><p>posted by NotFredSafe</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634257085360000000</link>
		<pubDate>Thu, 18 Nov 2010 20:22:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634257085360000000</guid>
		<dc:creator>NotFredSafe</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 7 of n</title>
		<description>
			<![CDATA[ <p>I'm in Part 8, talking about regex: <a href="http://channel9.msdn.com/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-8-of-n">http://channel9.msdn.com/Shows/Going&#43;Deep/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-8-of-n</a></p><p>posted by STL</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634257090300000000</link>
		<pubDate>Thu, 18 Nov 2010 20:30:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-/C9-Lectures-Stephan-T-Lavavej-Standard-Template-Library-STL-7-of-n#c634257090300000000</guid>
		<dc:creator>STL</dc:creator>
	</item>
</channel>
</rss>