<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Aufbau der STL - Teil 2: Iteratoren und Algorithmen]]></title><description><![CDATA[<p>HALLO.</p>
<p>ich habe folgendes kleines programm mittels dem oben genannten tutorial geschrieben:</p>
<pre><code class="language-cpp">#include &lt;vector&gt;
using namespace std; 

int main()
{
	vector&lt;int&gt; data;
	data.push_back(0);
	data.push_back(1);
	data.push_back(2);
	data.push_back(3);

	vector&lt;int&gt;::iterator pos = remove(data.begin(),data.end(),0);
	data.erase(pos,data.end());

	return 0;
}
</code></pre>
<p>nun kommt aber die fehlermeldung, dass remove keine 3 parameter akzeptiert. was ist den da aber anders als im tutorial?</p>
<p>DANKE.<br />
STICK.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/147384/aufbau-der-stl-teil-2-iteratoren-und-algorithmen</link><generator>RSS for Node</generator><lastBuildDate>Fri, 04 Sep 2026 04:49:15 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/147384.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 16 May 2006 11:59:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Aufbau der STL - Teil 2: Iteratoren und Algorithmen on Tue, 16 May 2006 11:59:34 GMT]]></title><description><![CDATA[<p>HALLO.</p>
<p>ich habe folgendes kleines programm mittels dem oben genannten tutorial geschrieben:</p>
<pre><code class="language-cpp">#include &lt;vector&gt;
using namespace std; 

int main()
{
	vector&lt;int&gt; data;
	data.push_back(0);
	data.push_back(1);
	data.push_back(2);
	data.push_back(3);

	vector&lt;int&gt;::iterator pos = remove(data.begin(),data.end(),0);
	data.erase(pos,data.end());

	return 0;
}
</code></pre>
<p>nun kommt aber die fehlermeldung, dass remove keine 3 parameter akzeptiert. was ist den da aber anders als im tutorial?</p>
<p>DANKE.<br />
STICK.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058817</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058817</guid><dc:creator><![CDATA[stick_thai]]></dc:creator><pubDate>Tue, 16 May 2006 11:59:34 GMT</pubDate></item><item><title><![CDATA[Reply to Aufbau der STL - Teil 2: Iteratoren und Algorithmen on Tue, 16 May 2006 12:03:25 GMT]]></title><description><![CDATA[<p>&quot;#include &lt;algorithm&gt;&quot; - würde ich zumindest vermuten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058821</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058821</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Tue, 16 May 2006 12:03:25 GMT</pubDate></item><item><title><![CDATA[Reply to Aufbau der STL - Teil 2: Iteratoren und Algorithmen on Tue, 16 May 2006 14:27:56 GMT]]></title><description><![CDATA[<p>@ CStoll:</p>
<p>danke für den hinweis. daran hat es auch gelegen.</p>
<p>STICK.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058952</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058952</guid><dc:creator><![CDATA[stick_thai]]></dc:creator><pubDate>Tue, 16 May 2006 14:27:56 GMT</pubDate></item></channel></rss>