commit 0f56913fed458a022f2b486e6b9195d3c00ffb5b Author: linyongji Date: Wed Jan 13 08:27:03 2021 +0800 master分支创建了工程目录 diff --git a/Alogrithm/Alogrithm.sln b/Alogrithm/Alogrithm.sln new file mode 100644 index 0000000..f918ad6 --- /dev/null +++ b/Alogrithm/Alogrithm.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30804.86 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Alogrithm", "Alogrithm\Alogrithm.vcxproj", "{10672502-40A3-4840-8A25-4F01518FDEBE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {10672502-40A3-4840-8A25-4F01518FDEBE}.Debug|x64.ActiveCfg = Debug|x64 + {10672502-40A3-4840-8A25-4F01518FDEBE}.Debug|x64.Build.0 = Debug|x64 + {10672502-40A3-4840-8A25-4F01518FDEBE}.Debug|x86.ActiveCfg = Debug|Win32 + {10672502-40A3-4840-8A25-4F01518FDEBE}.Debug|x86.Build.0 = Debug|Win32 + {10672502-40A3-4840-8A25-4F01518FDEBE}.Release|x64.ActiveCfg = Release|x64 + {10672502-40A3-4840-8A25-4F01518FDEBE}.Release|x64.Build.0 = Release|x64 + {10672502-40A3-4840-8A25-4F01518FDEBE}.Release|x86.ActiveCfg = Release|Win32 + {10672502-40A3-4840-8A25-4F01518FDEBE}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {774299E3-892E-4CF1-852A-B5202BC1C292} + EndGlobalSection +EndGlobal diff --git a/Alogrithm/Alogrithm/Alogrithm.vcxproj b/Alogrithm/Alogrithm/Alogrithm.vcxproj new file mode 100644 index 0000000..c223d9c --- /dev/null +++ b/Alogrithm/Alogrithm/Alogrithm.vcxproj @@ -0,0 +1,150 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + + 16.0 + Win32Proj + {10672502-40a3-4840-8a25-4f01518fdebe} + Alogrithm + 10.0 + + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + + true + + + false + + + true + + + false + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + diff --git a/Alogrithm/Alogrithm/Alogrithm.vcxproj.filters b/Alogrithm/Alogrithm/Alogrithm.vcxproj.filters new file mode 100644 index 0000000..f384c26 --- /dev/null +++ b/Alogrithm/Alogrithm/Alogrithm.vcxproj.filters @@ -0,0 +1,26 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {8b4d46af-84ff-4c81-af82-fef22d247ccf} + + + {f60c45a4-7173-4582-afbb-71bf6dae4bb6} + + + {185d7326-e9ee-437a-9d5f-caa5f1e2b48f} + + + \ No newline at end of file diff --git a/Alogrithm/Alogrithm/Alogrithm.vcxproj.user b/Alogrithm/Alogrithm/Alogrithm.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/Alogrithm/Alogrithm/Alogrithm.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Alogrithm/readme.txt b/Alogrithm/readme.txt new file mode 100644 index 0000000..6fc30f2 --- /dev/null +++ b/Alogrithm/readme.txt @@ -0,0 +1,10 @@ +# 算法题训练要求: +1. 所有训练题在同一个工程中完成 +2. 每个源文件完成一道训练题 +3. 每道训练题必须做单元测试 +4. 函数实现必须严格按照规定接口去做 +5. 使用代码管理工具,每题新建一个分支 +6. 源文件以"题号_函数名称.c"命名,放在工程目录下的src文件夹内 +7. 源文件对应头文件以"题号_函数名称.h"命名,放在工程目录下的include文件夹内 +8. 单元测试样例文件以"题号_函数名称.ini"命名,放在工程目录下的config文件夹内 +9. 创建Common.c与Common.h文件,其中实现函数char * GetAuthor()和char * GetLanguage() \ No newline at end of file