<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mediawiki.zeropage.org/index.php?action=history&amp;feed=atom&amp;title=%EB%B2%A1%ED%84%B0%2F%EA%B9%80%EC%88%98%EC%A7%84</id>
	<title>벡터/김수진 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://mediawiki.zeropage.org/index.php?action=history&amp;feed=atom&amp;title=%EB%B2%A1%ED%84%B0%2F%EA%B9%80%EC%88%98%EC%A7%84"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.zeropage.org/index.php?title=%EB%B2%A1%ED%84%B0/%EA%B9%80%EC%88%98%EC%A7%84&amp;action=history"/>
	<updated>2026-05-16T21:22:25Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.8</generator>
	<entry>
		<id>https://mediawiki.zeropage.org/index.php?title=%EB%B2%A1%ED%84%B0/%EA%B9%80%EC%88%98%EC%A7%84&amp;diff=52057&amp;oldid=prev</id>
		<title>imported&gt;Unknown at 05:29, 7 February 2021</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.zeropage.org/index.php?title=%EB%B2%A1%ED%84%B0/%EA%B9%80%EC%88%98%EC%A7%84&amp;diff=52057&amp;oldid=prev"/>
		<updated>2021-02-07T05:29:35Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;===벡터/김수진===&lt;br /&gt;
 #include&amp;amp;lt;iostream&amp;amp;gt; &lt;br /&gt;
 #include&amp;amp;lt;vector&amp;amp;gt; &lt;br /&gt;
 #include&amp;amp;lt;string&amp;amp;gt;&lt;br /&gt;
 #include&amp;amp;lt;algorithm&amp;amp;gt; &lt;br /&gt;
 using namespace std; &lt;br /&gt;
 struct student&lt;br /&gt;
 {&lt;br /&gt;
 	string name;&lt;br /&gt;
 	int score;&lt;br /&gt;
 };&lt;br /&gt;
 bool compare(student a, student b)&lt;br /&gt;
 {&lt;br /&gt;
 	return a.name &amp;amp;gt; b.name;&lt;br /&gt;
 }&lt;br /&gt;
 int main() &lt;br /&gt;
 { &lt;br /&gt;
 	student student1, student2, student3;&lt;br /&gt;
 	student1.name=&amp;quot;kim&amp;quot;;&lt;br /&gt;
 	student2.name=&amp;quot;lee&amp;quot;;&lt;br /&gt;
 	student3.name=&amp;quot;shin&amp;quot;;&lt;br /&gt;
 	student1.score=100;&lt;br /&gt;
 	student2.score=90;&lt;br /&gt;
 	student3.score=80;&lt;br /&gt;
 	vector&amp;amp;lt; student &amp;amp;gt; vec;&lt;br /&gt;
 	vec.push_back(student1);&lt;br /&gt;
 	vec.push_back(student2);&lt;br /&gt;
 	vec.push_back(student3);&lt;br /&gt;
 	sort(vec.begin(),vec.end(),compare);&lt;br /&gt;
 	vector&amp;amp;lt;student&amp;amp;gt;::iterator i=vec.begin();  &lt;br /&gt;
 	for(i=vec.begin();i!=vec.end();i++)  &lt;br /&gt;
 		cout&amp;amp;lt;&amp;amp;lt;(*i).score&amp;amp;lt;&amp;amp;lt;endl; &lt;br /&gt;
 &lt;br /&gt;
 	return 0; &lt;br /&gt;
 }&lt;br /&gt;
&lt;/div&gt;</summary>
		<author><name>imported&gt;Unknown</name></author>
	</entry>
</feed>