<?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[Vectorinhalt sortieren]]></title><description><![CDATA[<p>Tagchen zusammen,<br />
in meinem Programm lese ich alle verfügbaren Schriftarten aus und speichere deren Namen in einen String-Vector. Da die Namen dort allerdings in beliebiger Reihenfolge stehen, wollte ich sie sortieren lassen:</p>
<pre><code class="language-cpp">#include &lt;algorithm&gt;
#include &lt;vector&gt;
...
vector&lt;std::string&gt;vfonts;
...
sort(vfonts.begin(),vfonts.end());
</code></pre>
<p>Dieser Code funktioniert auch, allerdings irgendwie nur in Borland, wo ich das ganze getestet hatte. Da aber das Hauptprojekt in VS läuft, habe ich dort alles genauso gemacht, bekomme nun allerdings diese Fehler:</p>
<blockquote>
<p>c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\vector(915) : see declaration of 'std::operator<code>&lt;'' c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::vector&lt;\_Ty,\_Alloc&gt; &amp;,const std::vector&lt;\_Ty,\_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;\_Ty,\_Ax&gt; &amp;' from 'std::allocator&lt;\_Ty&gt;::value\_type' with \[ _Ty=std::string \] c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\vector(915) : see declaration of 'std::operator</code>&lt;''<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\xutility(655) : see declaration of 'std::operator<code>&lt;'' c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::reverse\_iterator&lt;\_RanIt&gt; &amp;,const std::reverse\_iterator&lt;\_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse\_iterator&lt;\_RanIt&gt; &amp;' from 'std::allocator&lt;\_Ty&gt;::value\_type' with \[ _Ty=std::string \] c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\xutility(655) : see declaration of 'std::operator</code>&lt;''<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\xutility(655) : see declaration of 'std::operator<code>&lt;'' c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::pair&lt;\_Ty1,\_Ty2&gt; &amp;,const std::pair&lt;\_Ty1,\_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;\_Ty1,\_Ty2&gt; &amp;' from 'std::allocator&lt;\_Ty&gt;::value\_type' with \[ _Ty=std::string \] c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\utility(73) : see declaration of 'std::operator</code>&lt;''<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2676: binary '&lt;' : 'std::allocator&lt;_Ty&gt;::value_type' does not define this operator or a conversion to a type acceptable to the predefined operator<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2676: binary '&lt;' : 'std::allocator&lt;_Ty&gt;::value_type' does not define this operator or a conversion to a type acceptable to the predefined operator<br />
with<br />
[<br />
_Ty=std::string<br />
]</p>
</blockquote>
<p>Anscheinend passt ihm etwas an der algorithm Datei nicht, nur ersetzen (mit der von Borland) kann ich sie nicht, da VS eine Borlandspezifische Dinge in der Datei nicht versteht. Weiß jemand was ich hierbei machen kann?</p>
<p>greetz KN4CK3R</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/213771/vectorinhalt-sortieren</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 09:52:35 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/213771.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 21 May 2008 20:05:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Vectorinhalt sortieren on Wed, 21 May 2008 20:17:03 GMT]]></title><description><![CDATA[<p>Tagchen zusammen,<br />
in meinem Programm lese ich alle verfügbaren Schriftarten aus und speichere deren Namen in einen String-Vector. Da die Namen dort allerdings in beliebiger Reihenfolge stehen, wollte ich sie sortieren lassen:</p>
<pre><code class="language-cpp">#include &lt;algorithm&gt;
#include &lt;vector&gt;
...
vector&lt;std::string&gt;vfonts;
...
sort(vfonts.begin(),vfonts.end());
</code></pre>
<p>Dieser Code funktioniert auch, allerdings irgendwie nur in Borland, wo ich das ganze getestet hatte. Da aber das Hauptprojekt in VS läuft, habe ich dort alles genauso gemacht, bekomme nun allerdings diese Fehler:</p>
<blockquote>
<p>c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\vector(915) : see declaration of 'std::operator<code>&lt;'' c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::vector&lt;\_Ty,\_Alloc&gt; &amp;,const std::vector&lt;\_Ty,\_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;\_Ty,\_Ax&gt; &amp;' from 'std::allocator&lt;\_Ty&gt;::value\_type' with \[ _Ty=std::string \] c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\vector(915) : see declaration of 'std::operator</code>&lt;''<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\xutility(655) : see declaration of 'std::operator<code>&lt;'' c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::reverse\_iterator&lt;\_RanIt&gt; &amp;,const std::reverse\_iterator&lt;\_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse\_iterator&lt;\_RanIt&gt; &amp;' from 'std::allocator&lt;\_Ty&gt;::value\_type' with \[ _Ty=std::string \] c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\xutility(655) : see declaration of 'std::operator</code>&lt;''<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\xutility(655) : see declaration of 'std::operator<code>&lt;'' c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::pair&lt;\_Ty1,\_Ty2&gt; &amp;,const std::pair&lt;\_Ty1,\_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;\_Ty1,\_Ty2&gt; &amp;' from 'std::allocator&lt;\_Ty&gt;::value\_type' with \[ _Ty=std::string \] c:\\Programme\\Microsoft Visual Studio .NET 2003\\Vc7\\include\\utility(73) : see declaration of 'std::operator</code>&lt;''<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1719): error C2676: binary '&lt;' : 'std::allocator&lt;_Ty&gt;::value_type' does not define this operator or a conversion to a type acceptable to the predefined operator<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::vector&lt;_Ty,_Alloc&gt; &amp;,const std::vector&lt;_Ty,_Alloc&gt; &amp;)' : could not deduce template argument for 'const std::vector&lt;_Ty,_Ax&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::reverse_iterator&lt;_RanIt&gt; &amp;,const std::reverse_iterator&lt;_RanIt&gt; &amp;)' : could not deduce template argument for 'const std::reverse_iterator&lt;_RanIt&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2784: 'bool std::operator &lt;(const std::pair&lt;_Ty1,_Ty2&gt; &amp;,const std::pair&lt;_Ty1,_Ty2&gt; &amp;)' : could not deduce template argument for 'const std::pair&lt;_Ty1,_Ty2&gt; &amp;' from 'std::allocator&lt;_Ty&gt;::value_type'<br />
with<br />
[<br />
_Ty=std::string<br />
]<br />
c:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\algorithm(1720): error C2676: binary '&lt;' : 'std::allocator&lt;_Ty&gt;::value_type' does not define this operator or a conversion to a type acceptable to the predefined operator<br />
with<br />
[<br />
_Ty=std::string<br />
]</p>
</blockquote>
<p>Anscheinend passt ihm etwas an der algorithm Datei nicht, nur ersetzen (mit der von Borland) kann ich sie nicht, da VS eine Borlandspezifische Dinge in der Datei nicht versteht. Weiß jemand was ich hierbei machen kann?</p>
<p>greetz KN4CK3R</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1513893</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1513893</guid><dc:creator><![CDATA[KN4CK3R]]></dc:creator><pubDate>Wed, 21 May 2008 20:17:03 GMT</pubDate></item><item><title><![CDATA[Reply to Vectorinhalt sortieren on Wed, 21 May 2008 22:11:12 GMT]]></title><description><![CDATA[<p>also bei mir im vs 2008 express funktioniert folgender code</p>
<pre><code class="language-cpp">vector&lt;std::string&gt; names;
names.push_back(&quot;a&quot;);
names.push_back(&quot;b&quot;);
names.push_back(&quot;c&quot;);
sort(names.begin(),names.end());
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1513960</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1513960</guid><dc:creator><![CDATA[Fencer]]></dc:creator><pubDate>Wed, 21 May 2008 22:11:12 GMT</pubDate></item><item><title><![CDATA[Reply to Vectorinhalt sortieren on Wed, 21 May 2008 22:16:58 GMT]]></title><description><![CDATA[<p>ja, wie gesagt, funktionieren tut der Code einwandfrei. Nur in VS (Version 2003) bekomme ich die oben geposteten Fehler. Und außer sort habe ich keine vergleichbare Funktion gefunden, um Strings zu sortieren.</p>
<p>greetz KN4CK3R</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1513961</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1513961</guid><dc:creator><![CDATA[KN4CK3R]]></dc:creator><pubDate>Wed, 21 May 2008 22:16:58 GMT</pubDate></item><item><title><![CDATA[Reply to Vectorinhalt sortieren on Thu, 22 May 2008 00:28:56 GMT]]></title><description><![CDATA[<p>OT: Derselbe KN4CK3R wie in diversen CHEAT-Foren?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1514008</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1514008</guid><dc:creator><![CDATA[dust]]></dc:creator><pubDate>Thu, 22 May 2008 00:28:56 GMT</pubDate></item><item><title><![CDATA[Reply to Vectorinhalt sortieren on Thu, 22 May 2008 00:46:55 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;string&gt;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1514010</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1514010</guid><dc:creator><![CDATA[cheater]]></dc:creator><pubDate>Thu, 22 May 2008 00:46:55 GMT</pubDate></item><item><title><![CDATA[Reply to Vectorinhalt sortieren on Thu, 22 May 2008 16:12:04 GMT]]></title><description><![CDATA[<p>dust schrieb:</p>
<blockquote>
<p>OT: Derselbe KN4CK3R wie in diversen CHEAT-Foren?</p>
</blockquote>
<p>ja</p>
<p>cheater schrieb:</p>
<blockquote>
<pre><code class="language-cpp">#include &lt;string&gt;
</code></pre>
</blockquote>
<p>ich schau in die Richtung mal weiter, obwohl der Header eigentlich schon dabei ist.</p>
<p>greetz KN4CK3R</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1514406</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1514406</guid><dc:creator><![CDATA[KN4CK3R]]></dc:creator><pubDate>Thu, 22 May 2008 16:12:04 GMT</pubDate></item></channel></rss>