<?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%A0%88%EB%B0%8D%EC%A6%88%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8%2F%ED%94%84%EB%A1%9C%ED%86%A0%ED%83%80%EC%9E%85%2FSTLLIST</id>
	<title>레밍즈프로젝트/프로토타입/STLLIST - 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%A0%88%EB%B0%8D%EC%A6%88%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8%2F%ED%94%84%EB%A1%9C%ED%86%A0%ED%83%80%EC%9E%85%2FSTLLIST"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.zeropage.org/index.php?title=%EB%A0%88%EB%B0%8D%EC%A6%88%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8/%ED%94%84%EB%A1%9C%ED%86%A0%ED%83%80%EC%9E%85/STLLIST&amp;action=history"/>
	<updated>2026-05-15T19:32:34Z</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%A0%88%EB%B0%8D%EC%A6%88%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8/%ED%94%84%EB%A1%9C%ED%86%A0%ED%83%80%EC%9E%85/STLLIST&amp;diff=50064&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%A0%88%EB%B0%8D%EC%A6%88%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8/%ED%94%84%EB%A1%9C%ED%86%A0%ED%83%80%EC%9E%85/STLLIST&amp;diff=50064&amp;oldid=prev"/>
		<updated>2021-02-07T05:29:22Z</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;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| CList&lt;br /&gt;
| [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_cstring.asp]&lt;br /&gt;
|-&lt;br /&gt;
| CList 사용&lt;br /&gt;
| [http://blog.naver.com/ryudk01.do?Redirect=Log&amp;amp;logNo=120007965930]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= 대략적인 CList =&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Construction&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| CList&lt;br /&gt;
| Constructs an empty ordered list.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Head/Tail Access&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| GetHead&lt;br /&gt;
| Returns the head element of the list (cannot be empty).&lt;br /&gt;
|-&lt;br /&gt;
| GetTail&lt;br /&gt;
| Returns the tail element of the list (cannot be empty).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Operations&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| RemoveHead&lt;br /&gt;
| Removes the element from the head of the list.&lt;br /&gt;
|-&lt;br /&gt;
| RemoveTail&lt;br /&gt;
| Removes the element from the tail of the list.&lt;br /&gt;
|-&lt;br /&gt;
| AddHead&lt;br /&gt;
| Adds an element (or all the elements in another list) to the head of the list (makes a new head).&lt;br /&gt;
|-&lt;br /&gt;
| AddTail&lt;br /&gt;
| Adds an element (or all the elements in another list) to the tail of the list (makes a new tail).&lt;br /&gt;
|-&lt;br /&gt;
| RemoveAll&lt;br /&gt;
| Removes all the elements from this list.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Iteration&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| GetHeadPosition&lt;br /&gt;
| Returns the position of the head element of the list.&lt;br /&gt;
|-&lt;br /&gt;
| GetTailPosition&lt;br /&gt;
| Returns the position of the tail element of the list.&lt;br /&gt;
|-&lt;br /&gt;
| GetNext&lt;br /&gt;
| Gets the next element for iterating.&lt;br /&gt;
|-&lt;br /&gt;
| GetPrev&lt;br /&gt;
| Gets the previous element for iterating.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Retrieval/Modification&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| GetAt&lt;br /&gt;
| Gets the element at a given position.&lt;br /&gt;
|-&lt;br /&gt;
| SetAt&lt;br /&gt;
| Sets the element at a given position.&lt;br /&gt;
|-&lt;br /&gt;
| RemoveAt&lt;br /&gt;
| Removes an element from this list, specified by position.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Insertion&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| InsertBefore&lt;br /&gt;
| Inserts a new element before a given position.&lt;br /&gt;
|-&lt;br /&gt;
| InsertAfter&lt;br /&gt;
| Inserts a new element after a given position.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Searching&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Find&lt;br /&gt;
| Gets the position of an element specified by pointer value.&lt;br /&gt;
|-&lt;br /&gt;
| FindIndex&lt;br /&gt;
| Gets the position of an element specified by a zero-based index.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Status&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| GetCount&lt;br /&gt;
| Returns the number of elements in this list.&lt;br /&gt;
|-&lt;br /&gt;
| IsEmpty&lt;br /&gt;
| Tests for the empty list condition (no elements).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>imported&gt;Unknown</name></author>
	</entry>
</feed>