add List
This commit is contained in:
9
TinySTL/List.h
Normal file
9
TinySTL/List.h
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#ifndef _LIST_H_
|
||||||
|
#define _LIST_H_
|
||||||
|
|
||||||
|
namespace TinySTL{
|
||||||
|
template<class T>
|
||||||
|
class List{};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -81,6 +81,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="main.cpp" />
|
<ClCompile Include="main.cpp" />
|
||||||
<ClCompile Include="Profiler\Profiler.cpp" />
|
<ClCompile Include="Profiler\Profiler.cpp" />
|
||||||
|
<ClCompile Include="Test\AlgorithmTest.cpp" />
|
||||||
<ClCompile Include="Test\PairTest.cpp" />
|
<ClCompile Include="Test\PairTest.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -95,6 +96,7 @@
|
|||||||
<ClInclude Include="Deque.h" />
|
<ClInclude Include="Deque.h" />
|
||||||
<ClInclude Include="Functional.h" />
|
<ClInclude Include="Functional.h" />
|
||||||
<ClInclude Include="Iterator.h" />
|
<ClInclude Include="Iterator.h" />
|
||||||
|
<ClInclude Include="List.h" />
|
||||||
<ClInclude Include="Profiler\Profiler.h" />
|
<ClInclude Include="Profiler\Profiler.h" />
|
||||||
<ClInclude Include="Queue.h" />
|
<ClInclude Include="Queue.h" />
|
||||||
<ClInclude Include="ReverseIterator.h" />
|
<ClInclude Include="ReverseIterator.h" />
|
||||||
|
|||||||
@@ -21,15 +21,18 @@
|
|||||||
</Filter>
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="main.cpp">
|
|
||||||
<Filter>源文件</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Profiler\Profiler.cpp">
|
<ClCompile Include="Profiler\Profiler.cpp">
|
||||||
<Filter>头文件\Profiler</Filter>
|
<Filter>头文件\Profiler</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="Test\PairTest.cpp">
|
<ClCompile Include="Test\PairTest.cpp">
|
||||||
<Filter>Test</Filter>
|
<Filter>Test</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="main.cpp">
|
||||||
|
<Filter>源文件</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Test\AlgorithmTest.cpp">
|
||||||
|
<Filter>Test</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="TypeTraits.h">
|
<ClInclude Include="TypeTraits.h">
|
||||||
@@ -92,5 +95,8 @@
|
|||||||
<ClInclude Include="AVLTree.h">
|
<ClInclude Include="AVLTree.h">
|
||||||
<Filter>头文件</Filter>
|
<Filter>头文件</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="List.h">
|
||||||
|
<Filter>头文件</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
Reference in New Issue
Block a user