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>
|
||||
<ClCompile Include="main.cpp" />
|
||||
<ClCompile Include="Profiler\Profiler.cpp" />
|
||||
<ClCompile Include="Test\AlgorithmTest.cpp" />
|
||||
<ClCompile Include="Test\PairTest.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -95,6 +96,7 @@
|
||||
<ClInclude Include="Deque.h" />
|
||||
<ClInclude Include="Functional.h" />
|
||||
<ClInclude Include="Iterator.h" />
|
||||
<ClInclude Include="List.h" />
|
||||
<ClInclude Include="Profiler\Profiler.h" />
|
||||
<ClInclude Include="Queue.h" />
|
||||
<ClInclude Include="ReverseIterator.h" />
|
||||
|
||||
@@ -21,15 +21,18 @@
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="main.cpp">
|
||||
<Filter>源文件</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Profiler\Profiler.cpp">
|
||||
<Filter>头文件\Profiler</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Test\PairTest.cpp">
|
||||
<Filter>Test</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="main.cpp">
|
||||
<Filter>源文件</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Test\AlgorithmTest.cpp">
|
||||
<Filter>Test</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="TypeTraits.h">
|
||||
@@ -92,5 +95,8 @@
|
||||
<ClInclude Include="AVLTree.h">
|
||||
<Filter>头文件</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="List.h">
|
||||
<Filter>头文件</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user