-
Notifications
You must be signed in to change notification settings - Fork 0
/
leetcoder.vcxproj
234 lines (234 loc) · 10.8 KB
/
leetcoder.vcxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{E605DB8C-0628-4B7B-A9F7-538E304E24DF}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>leetcoder</RootNamespace>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="1.cpp" />
<ClCompile Include="2.cpp" />
<ClCompile Include="3.cpp" />
<ClCompile Include="4.cpp" />
<ClCompile Include="cont12_1.cpp" />
<ClCompile Include="coun12_4.cpp" />
<ClCompile Include="cout12_2.cpp" />
<ClCompile Include="cout12_3dp.cpp" />
<ClCompile Include="hiho1096动态规划.cpp" />
<ClCompile Include="hiho1114.cpp" />
<ClCompile Include="leet1.cpp" />
<ClCompile Include="leet15 3数和0.cpp" />
<ClCompile Include="leet169主元.cpp" />
<ClCompile Include="leet19.cpp" />
<ClCompile Include="leet215求第K大元.cpp" />
<ClCompile Include="leet22.cpp" />
<ClCompile Include="leet24交换链表相邻元素.cpp" />
<ClCompile Include="leet25相邻k个数改变.cpp" />
<ClCompile Include="leet26去重cpp.cpp" />
<ClCompile Include="leet27删除.cpp" />
<ClCompile Include="leet28.cpp" />
<ClCompile Include="leet29模拟除法.cpp" />
<ClCompile Include="leet30字串集合.cpp" />
<ClCompile Include="leet31排列组合.cpp" />
<ClCompile Include="leet32最大合法匹配子串.cpp" />
<ClCompile Include="leet33 .cpp" />
<ClCompile Include="leet34.cpp" />
<ClCompile Include="leet35.cpp" />
<ClCompile Include="leet36数独合理.cpp" />
<ClCompile Include="leet37数独填充.cpp" />
<ClCompile Include="leet38.cpp" />
<ClCompile Include="leet39.cpp" />
<ClCompile Include="leet40.cpp" />
<ClCompile Include="leet406.cpp" />
<ClCompile Include="leet41元素交换.cpp" />
<ClCompile Include="leet410.cpp" />
<ClCompile Include="leet413.cpp" />
<ClCompile Include="leet416_01背包变种.cpp" />
<ClCompile Include="leet42双指针维护.cpp" />
<ClCompile Include="leet435.cpp" />
<ClCompile Include="leet43字符串乘法.cpp" />
<ClCompile Include="leet45距离惰性贪心.cpp" />
<ClCompile Include="leet46排列.cpp" />
<ClCompile Include="leet47排列2.cpp" />
<ClCompile Include="leet48.cpp" />
<ClCompile Include="leet49hash相关.cpp" />
<ClCompile Include="leet4两个有序数组的中间元.cpp" />
<ClCompile Include="leet50.cpp" />
<ClCompile Include="leet51N皇后.cpp" />
<ClCompile Include="leet52N皇后2.cpp" />
<ClCompile Include="leet53最大部分和.cpp" />
<ClCompile Include="leet54.cpp" />
<ClCompile Include="leet55距离覆盖.cpp" />
<ClCompile Include="leet56区间合并贪心.cpp" />
<ClCompile Include="leet62.cpp" />
<ClCompile Include="leet63.cpp" />
<ClCompile Include="leet64.cpp" />
<ClCompile Include="leet70.cpp" />
<ClCompile Include="leet72字符串改变.cpp" />
<ClCompile Include="leetcode10递归处理字符.cpp" />
<ClCompile Include="leetcode14最长公共前缀.cpp" />
<ClCompile Include="leetcode16接近目标数的三个数和双指针.cpp" />
<ClCompile Include="leetcode17.cpp" />
<ClCompile Include="leetcode18 4sum.cpp" />
<ClCompile Include="leetcode20.cpp" />
<ClCompile Include="leetcode2链表对应相加.cpp" />
<ClCompile Include="leetcode303.cpp" />
<ClCompile Include="leetcode5回文串.cpp" />
<ClCompile Include="leetcode6循环对角线字符串.cpp" />
<ClCompile Include="leetcode7.cpp" />
<ClCompile Include="leetcode9回文数字.cpp" />
<ClCompile Include="leetcoder11.cpp" />
<ClCompile Include="leet23合成K个有序数组.cpp" />
<ClCompile Include="NIM取子问题.cpp" />
<ClCompile Include="poj2186强连通分量.cpp" />
<ClCompile Include="poj2187凸包旋转卡壳.cpp" />
<ClCompile Include="pojPolya计数.cpp" />
<ClCompile Include="字符串处理栈.cpp" />
<ClCompile Include="容斥原理.cpp" />
<ClCompile Include="莫比乌斯函数.cpp" />
<ClCompile Include="辗转相除法游戏.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>