diff --git a/++i_i++/bin/Debug/++i_i++.exe b/++i_i++/bin/Debug/++i_i++.exe index 548d2f9..d77b68f 100644 Binary files a/++i_i++/bin/Debug/++i_i++.exe and b/++i_i++/bin/Debug/++i_i++.exe differ diff --git a/++i_i++/bin/Debug/++i_i++.pdb b/++i_i++/bin/Debug/++i_i++.pdb index 543c3a2..2993294 100644 Binary files a/++i_i++/bin/Debug/++i_i++.pdb and b/++i_i++/bin/Debug/++i_i++.pdb differ diff --git a/++i_i++/obj/Debug/++i_i++.csproj.FileListAbsolute.txt b/++i_i++/obj/Debug/++i_i++.csproj.FileListAbsolute.txt index 6cf382c..3e9f902 100644 --- a/++i_i++/obj/Debug/++i_i++.csproj.FileListAbsolute.txt +++ b/++i_i++/obj/Debug/++i_i++.csproj.FileListAbsolute.txt @@ -3,3 +3,8 @@ C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\++i_i++\bin C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\++i_i++\obj\Debug\++i_i++.csprojResolveAssemblyReference.cache C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\++i_i++\obj\Debug\++i_i++.exe C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\++i_i++\obj\Debug\++i_i++.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\++i_i++\bin\Debug\++i_i++.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\++i_i++\bin\Debug\++i_i++.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\++i_i++\obj\Debug\++i_i++.csprojResolveAssemblyReference.cache +C:\Users\love_\Documents\GitHub\LibrarySolution\++i_i++\obj\Debug\++i_i++.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\++i_i++\obj\Debug\++i_i++.pdb diff --git a/++i_i++/obj/Debug/++i_i++.exe b/++i_i++/obj/Debug/++i_i++.exe index 548d2f9..d77b68f 100644 Binary files a/++i_i++/obj/Debug/++i_i++.exe and b/++i_i++/obj/Debug/++i_i++.exe differ diff --git a/++i_i++/obj/Debug/++i_i++.pdb b/++i_i++/obj/Debug/++i_i++.pdb index 543c3a2..2993294 100644 Binary files a/++i_i++/obj/Debug/++i_i++.pdb and b/++i_i++/obj/Debug/++i_i++.pdb differ diff --git a/++i_i++/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/++i_i++/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 55f22fa..7c79a6d 100644 Binary files a/++i_i++/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/++i_i++/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/AsyncDelegate/AsyncDelegate.csproj b/AsyncDelegate/AsyncDelegate.csproj new file mode 100644 index 0000000..da7f66f --- /dev/null +++ b/AsyncDelegate/AsyncDelegate.csproj @@ -0,0 +1,55 @@ + + + + + Debug + AnyCPU + {5BC1CD5A-6E8E-4B40-B78D-63AB6F9FDCBF} + Exe + Properties + AsyncDelegate + AsyncDelegate + v4.0 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/AsyncDelegate/Program.cs b/AsyncDelegate/Program.cs new file mode 100644 index 0000000..cc4aa1b --- /dev/null +++ b/AsyncDelegate/Program.cs @@ -0,0 +1,110 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; +using System.Threading; + +namespace AsyncDelegate +{ + class Program + { + + + static void Main(string[] args) + { + // + } + + + + } + class AsyncDelegateClass + { + public delegate int TakesAWhileDelegate(int data, int ms); + + public int TakesAWhile(int data, int ms) + { + Console.WriteLine("TakesAWhile Started"); + Thread.Sleep(ms); + Console.WriteLine("TakesAWhile Completed"); + return +data; + } + + /// + /// 投票 + /// + void Example1() + { + TakesAWhileDelegate d1 = TakesAWhile; + IAsyncResult ar = d1.BeginInvoke(1, 3000, null, null); + while (!ar.IsCompleted) + { + Console.WriteLine("."); + Thread.Sleep(50); + } + int result = d1.EndInvoke(ar); + Console.WriteLine("Result is {0}", result); + } + + + /// + /// 等待句柄 + /// + void Example2() + { + TakesAWhileDelegate d1 = TakesAWhile; + IAsyncResult ar = d1.BeginInvoke(1, 3000, null, null); + while (true) + { + Console.WriteLine("."); + if (ar.AsyncWaitHandle.WaitOne(50, false)) + { + Console.WriteLine("Can not get the result"); + break; + } + int result = d1.EndInvoke(ar); + Console.WriteLine("Result is {0}", result); + } + } + + + /// + /// 异步回调 + /// + void Example3() + { + TakesAWhileDelegate d1 = TakesAWhile; + d1.BeginInvoke(1, 3000, TakesAWhileCompleted, d1); + for (int i = 0; i < 100; i++) + { + Console.WriteLine("."); + Thread.Sleep(50); + } + } + + void TakesAWhileCompleted(IAsyncResult ar) + { + TakesAWhileDelegate d1 = ar.AsyncState as TakesAWhileDelegate; + Trace.Assert(d1 != null, "Invalid object type"); + int result = d1.EndInvoke(ar); + Console.WriteLine("Result is {0}", result); + } + + + void Example4() + { + TakesAWhileDelegate d1 = TakesAWhile; + d1.BeginInvoke(1, 3000, ar => + { + int result = d1.EndInvoke(ar); + Console.WriteLine("Result is {0}", result); + }, null); + for (int i = 0; i < 100; i++) + { + Console.WriteLine("."); + Thread.Sleep(50); + } + } + } +} diff --git a/AsyncDelegate/Properties/AssemblyInfo.cs b/AsyncDelegate/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5226678 --- /dev/null +++ b/AsyncDelegate/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过以下 +// 特性集控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("AsyncDelegate")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("AsyncDelegate")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 使此程序集中的类型 +// 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, +// 则将该类型上的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("b124ab92-e152-442e-b08c-735e6383611e")] + +// 程序集的版本信息由下面四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +// 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, +// 方法是按如下所示使用“*”: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/BackTrackingAlgorithm/bin/Debug/BackTrackingAlgorithm.exe b/BackTrackingAlgorithm/bin/Debug/BackTrackingAlgorithm.exe index f439f4e..8e494c9 100644 Binary files a/BackTrackingAlgorithm/bin/Debug/BackTrackingAlgorithm.exe and b/BackTrackingAlgorithm/bin/Debug/BackTrackingAlgorithm.exe differ diff --git a/BackTrackingAlgorithm/bin/Debug/BackTrackingAlgorithm.pdb b/BackTrackingAlgorithm/bin/Debug/BackTrackingAlgorithm.pdb index 66b1fbc..b9b9be2 100644 Binary files a/BackTrackingAlgorithm/bin/Debug/BackTrackingAlgorithm.pdb and b/BackTrackingAlgorithm/bin/Debug/BackTrackingAlgorithm.pdb differ diff --git a/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.csproj.FileListAbsolute.txt b/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.csproj.FileListAbsolute.txt index 2933517..0592355 100644 --- a/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.csproj.FileListAbsolute.txt +++ b/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.csproj.FileListAbsolute.txt @@ -3,3 +3,8 @@ C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\BackTrackin C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\BackTrackingAlgorithm\obj\Debug\BackTrackingAlgorithm.csprojResolveAssemblyReference.cache C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\BackTrackingAlgorithm\obj\Debug\BackTrackingAlgorithm.exe C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\BackTrackingAlgorithm\obj\Debug\BackTrackingAlgorithm.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\BackTrackingAlgorithm\obj\Debug\BackTrackingAlgorithm.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\BackTrackingAlgorithm\obj\Debug\BackTrackingAlgorithm.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\BackTrackingAlgorithm\bin\Debug\BackTrackingAlgorithm.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\BackTrackingAlgorithm\bin\Debug\BackTrackingAlgorithm.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\BackTrackingAlgorithm\obj\Debug\BackTrackingAlgorithm.csprojResolveAssemblyReference.cache diff --git a/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.exe b/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.exe index f439f4e..8e494c9 100644 Binary files a/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.exe and b/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.exe differ diff --git a/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.pdb b/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.pdb index 66b1fbc..b9b9be2 100644 Binary files a/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.pdb and b/BackTrackingAlgorithm/obj/Debug/BackTrackingAlgorithm.pdb differ diff --git a/BackTrackingAlgorithm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/BackTrackingAlgorithm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 5480233..d1862f3 100644 Binary files a/BackTrackingAlgorithm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/BackTrackingAlgorithm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/DP_KnapsackProblem/DP_KnapsackProblem.csproj b/DP_KnapsackProblem/DP_KnapsackProblem.csproj new file mode 100644 index 0000000..712c816 --- /dev/null +++ b/DP_KnapsackProblem/DP_KnapsackProblem.csproj @@ -0,0 +1,55 @@ + + + + + Debug + AnyCPU + {50213488-E465-4FF2-BE8D-8C55FBEEF241} + Exe + Properties + DP_KnapsackProblem + DP_KnapsackProblem + v4.0 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DP_KnapsackProblem/Program.cs b/DP_KnapsackProblem/Program.cs new file mode 100644 index 0000000..07827eb --- /dev/null +++ b/DP_KnapsackProblem/Program.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace DP_KnapsackProblem +{ + /// + /// 动态规划思想解决0-1背包问题 + /// + class Program + { + static void Main(string[] args) + { + } + } + + class Algotithm + { + public void DynamicProgramming() + { + + } + } +} diff --git a/DP_KnapsackProblem/Properties/AssemblyInfo.cs b/DP_KnapsackProblem/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..c06ddc9 --- /dev/null +++ b/DP_KnapsackProblem/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过以下 +// 特性集控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("DP_KnapsackProblem")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("DP_KnapsackProblem")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 使此程序集中的类型 +// 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, +// 则将该类型上的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("c204666d-3ff2-49eb-b186-9738048a6b8c")] + +// 程序集的版本信息由下面四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +// 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, +// 方法是按如下所示使用“*”: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/DelegateInvoke/bin/Debug/DelegateInvoke.exe b/DelegateInvoke/bin/Debug/DelegateInvoke.exe index 15468b3..d904318 100644 Binary files a/DelegateInvoke/bin/Debug/DelegateInvoke.exe and b/DelegateInvoke/bin/Debug/DelegateInvoke.exe differ diff --git a/DelegateInvoke/bin/Debug/DelegateInvoke.pdb b/DelegateInvoke/bin/Debug/DelegateInvoke.pdb index fee7023..2e02176 100644 Binary files a/DelegateInvoke/bin/Debug/DelegateInvoke.pdb and b/DelegateInvoke/bin/Debug/DelegateInvoke.pdb differ diff --git a/DelegateInvoke/obj/Debug/DelegateInvoke.csproj.FileListAbsolute.txt b/DelegateInvoke/obj/Debug/DelegateInvoke.csproj.FileListAbsolute.txt index 8523b88..5f27230 100644 --- a/DelegateInvoke/obj/Debug/DelegateInvoke.csproj.FileListAbsolute.txt +++ b/DelegateInvoke/obj/Debug/DelegateInvoke.csproj.FileListAbsolute.txt @@ -4,3 +4,9 @@ C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\DelegateInv C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\DelegateInvoke\bin\Debug\DelegateInvoke.pdb C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\DelegateInvoke\obj\Debug\DelegateInvoke.exe C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\DelegateInvoke\obj\Debug\DelegateInvoke.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\DelegateInvoke\bin\Debug\DelegateInvoke.exe.config +C:\Users\love_\Documents\GitHub\LibrarySolution\DelegateInvoke\bin\Debug\DelegateInvoke.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\DelegateInvoke\bin\Debug\DelegateInvoke.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\DelegateInvoke\obj\Debug\DelegateInvoke.csprojResolveAssemblyReference.cache +C:\Users\love_\Documents\GitHub\LibrarySolution\DelegateInvoke\obj\Debug\DelegateInvoke.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\DelegateInvoke\obj\Debug\DelegateInvoke.pdb diff --git a/DelegateInvoke/obj/Debug/DelegateInvoke.exe b/DelegateInvoke/obj/Debug/DelegateInvoke.exe index 15468b3..d904318 100644 Binary files a/DelegateInvoke/obj/Debug/DelegateInvoke.exe and b/DelegateInvoke/obj/Debug/DelegateInvoke.exe differ diff --git a/DelegateInvoke/obj/Debug/DelegateInvoke.pdb b/DelegateInvoke/obj/Debug/DelegateInvoke.pdb index fee7023..2e02176 100644 Binary files a/DelegateInvoke/obj/Debug/DelegateInvoke.pdb and b/DelegateInvoke/obj/Debug/DelegateInvoke.pdb differ diff --git a/DelegateInvoke/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/DelegateInvoke/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 10c1ec8..4e49739 100644 Binary files a/DelegateInvoke/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/DelegateInvoke/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/GreedyAlgorithmExample1/GreedyAlgorithmExample1.csproj b/GreedyAlgorithmExample1/GreedyAlgorithmExample1.csproj new file mode 100644 index 0000000..397a05e --- /dev/null +++ b/GreedyAlgorithmExample1/GreedyAlgorithmExample1.csproj @@ -0,0 +1,55 @@ + + + + + Debug + AnyCPU + {721A7A64-0C35-408D-BFA6-1F0168623033} + Exe + Properties + GreedyAlgorithmExample1 + GreedyAlgorithmExample1 + v4.0 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GreedyAlgorithmExample1/Program.cs b/GreedyAlgorithmExample1/Program.cs new file mode 100644 index 0000000..c180fe2 --- /dev/null +++ b/GreedyAlgorithmExample1/Program.cs @@ -0,0 +1,88 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace GreedyAlgorithmExample1 +{ + /* 贪婪算法问题 + * 设有m台完全相同的机器运行n个独立的任务,运行任务i所需要的时间为ti,要求确定一个调度方案是的完成所有任务所需要的时间最短。 + 假设任务已经按照其运行时间从大到小排序,算法基于最长运行时间作业优先的策略;按顺序先把每个1务分配到一台机器上,然后将剩余 + 的任务一次放入最先空闲的机器。 + + * 常量和变量说明: + * m:机器数。 + * n:任务数。 + * t[]:输入数组,长度为n,其中每个元素表示任务的运行时间,下标从0开始。 + * s[][]:二维数组,长度为m*n,下标从0开始,其中元素s[i][j]表示机器i运行的任务j的编号。 + * d[]:数组,长度为m其中元素d[i]表示机器i的运行时间,下标从0开始。 + * count[]:数组,长度为m,下标从0开始,其中元素count[i]表示机器i运行的任务数。 + * i:循环变量。 + * j:循环变量。 + * k:临时变量。 + * max:完成所有任务的时间。 + * min:临时变量。 */ + + + class Program + { + const int m = 5, n = 12; + int[] t = new int[n] { 20, 18, 16, 15, 12, 10, 9, 8, 6, 5, 3, 2 }; + int[,] s = new int[m, n]; + int[] d = new int[m]; + int[] count = new int[m]; + + int Function() + { + int i = 0, j = 0, k = 0, max = 0; + for (i = 0; i < m; i++) + { + d[i]=0; + for (j = 0; j < n; j++) + { + s[i,j] = 0; + } + } + + for (i = 0; i < m; i++) + { + s[i, 0] = i; + d[i] = d[i] + t[i]; + count[i] = 1; + } + + for (i = m; i < n; i++) + { + int min = d[0]; + k = 0; + for (j = 1; j < m; j++) + { + if (min > d[j]) + { + min = d[j]; + k = j; + } + } + s[k, 0] = i; + count[k] += 1; + d[k] += t[i]; + + + } + for (i = 0; i < m; i++) + { + if (d[i] > max) + { + max = d[k]; + } + } + return max; + } + static void Main(string[] args) + { + Program p=new Program(); + Console.WriteLine("运行结束所需时间:" + p.Function().ToString()); + Console.ReadKey(); + } + } +} diff --git a/GreedyAlgorithmExample1/Properties/AssemblyInfo.cs b/GreedyAlgorithmExample1/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..7aeb8fe --- /dev/null +++ b/GreedyAlgorithmExample1/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过以下 +// 特性集控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("GreedyAlgorithmExample1")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("GreedyAlgorithmExample1")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 使此程序集中的类型 +// 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, +// 则将该类型上的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("1427eebf-0a06-4005-beee-54efa5792862")] + +// 程序集的版本信息由下面四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +// 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, +// 方法是按如下所示使用“*”: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/HannoiProblem/HannoiProblem.csproj b/HannoiProblem/HannoiProblem.csproj new file mode 100644 index 0000000..d400db1 --- /dev/null +++ b/HannoiProblem/HannoiProblem.csproj @@ -0,0 +1,55 @@ + + + + + Debug + AnyCPU + {D43F90F2-267E-4056-A234-058AC7CF883C} + Exe + Properties + HannoiProblem + HannoiProblem + v4.0 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/HannoiProblem/Program.cs b/HannoiProblem/Program.cs new file mode 100644 index 0000000..aedb05f --- /dev/null +++ b/HannoiProblem/Program.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace HannoiProblem +{ + /// + /// 递归方式求解汉诺塔问题 + /// + class Program + { + static void Main(string[] args) + { + Hannoi hanoi = new Hannoi(); + hanoi.HannoiRecursion(5, 1, 2, 3); + Console.ReadKey(); + } + } + + class Hannoi + { + public void HannoiRecursion(int n, int first, int second, int third) + { + if (n > 0) + { + HannoiRecursion(n - 1, first, third, second); + Console.WriteLine("{0}->{1}", first, third); + HannoiRecursion(n - 1, second, first, third); + } + } + private int i = 0; + + public int I + { + get { return i; } + set { i = value; } + } + } +} diff --git a/HannoiProblem/Properties/AssemblyInfo.cs b/HannoiProblem/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..23a4de2 --- /dev/null +++ b/HannoiProblem/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过以下 +// 特性集控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("HannoiProblem")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("HannoiProblem")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 使此程序集中的类型 +// 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, +// 则将该类型上的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("359867f8-fe61-43b6-800f-16fcb57453b4")] + +// 程序集的版本信息由下面四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +// 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, +// 方法是按如下所示使用“*”: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/HeapSort/bin/Debug/HeapSort.exe b/HeapSort/bin/Debug/HeapSort.exe index 2a58b10..f972550 100644 Binary files a/HeapSort/bin/Debug/HeapSort.exe and b/HeapSort/bin/Debug/HeapSort.exe differ diff --git a/HeapSort/bin/Debug/HeapSort.pdb b/HeapSort/bin/Debug/HeapSort.pdb index b728103..313f345 100644 Binary files a/HeapSort/bin/Debug/HeapSort.pdb and b/HeapSort/bin/Debug/HeapSort.pdb differ diff --git a/HeapSort/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/HeapSort/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index f308f47..7db9623 100644 Binary files a/HeapSort/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/HeapSort/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/HeapSort/obj/Debug/HeapSort.csproj.FileListAbsolute.txt b/HeapSort/obj/Debug/HeapSort.csproj.FileListAbsolute.txt index a279191..6d128b1 100644 --- a/HeapSort/obj/Debug/HeapSort.csproj.FileListAbsolute.txt +++ b/HeapSort/obj/Debug/HeapSort.csproj.FileListAbsolute.txt @@ -4,3 +4,9 @@ C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\HeapSort\bi C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\HeapSort\obj\Debug\HeapSort.csprojResolveAssemblyReference.cache C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\HeapSort\obj\Debug\HeapSort.exe C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\HeapSort\obj\Debug\HeapSort.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\HeapSort\bin\Debug\HeapSort.exe.config +C:\Users\love_\Documents\GitHub\LibrarySolution\HeapSort\bin\Debug\HeapSort.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\HeapSort\bin\Debug\HeapSort.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\HeapSort\obj\Debug\HeapSort.csprojResolveAssemblyReference.cache +C:\Users\love_\Documents\GitHub\LibrarySolution\HeapSort\obj\Debug\HeapSort.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\HeapSort\obj\Debug\HeapSort.pdb diff --git a/HeapSort/obj/Debug/HeapSort.exe b/HeapSort/obj/Debug/HeapSort.exe index 2a58b10..f972550 100644 Binary files a/HeapSort/obj/Debug/HeapSort.exe and b/HeapSort/obj/Debug/HeapSort.exe differ diff --git a/HeapSort/obj/Debug/HeapSort.pdb b/HeapSort/obj/Debug/HeapSort.pdb index b728103..313f345 100644 Binary files a/HeapSort/obj/Debug/HeapSort.pdb and b/HeapSort/obj/Debug/HeapSort.pdb differ diff --git a/LibrarySolution.sln b/LibrarySolution.sln index c6cd0a8..309607d 100644 --- a/LibrarySolution.sln +++ b/LibrarySolution.sln @@ -17,6 +17,16 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultipleParameters", "Multi EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BackTrackingAlgorithm", "BackTrackingAlgorithm\BackTrackingAlgorithm.csproj", "{07B00242-4D68-479D-BD63-B2827DC2F004}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsyncDelegate", "AsyncDelegate\AsyncDelegate.csproj", "{5BC1CD5A-6E8E-4B40-B78D-63AB6F9FDCBF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DP_KnapsackProblem", "DP_KnapsackProblem\DP_KnapsackProblem.csproj", "{50213488-E465-4FF2-BE8D-8C55FBEEF241}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GreedyAlgorithmExample1", "GreedyAlgorithmExample1\GreedyAlgorithmExample1.csproj", "{721A7A64-0C35-408D-BFA6-1F0168623033}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HannoiProblem", "HannoiProblem\HannoiProblem.csproj", "{D43F90F2-267E-4056-A234-058AC7CF883C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThreadExample", "ThreadExample\ThreadExample.csproj", "{69B4E5B7-C783-444F-A4E8-A09BE7A1F74A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -51,6 +61,26 @@ Global {07B00242-4D68-479D-BD63-B2827DC2F004}.Debug|Any CPU.Build.0 = Debug|Any CPU {07B00242-4D68-479D-BD63-B2827DC2F004}.Release|Any CPU.ActiveCfg = Release|Any CPU {07B00242-4D68-479D-BD63-B2827DC2F004}.Release|Any CPU.Build.0 = Release|Any CPU + {5BC1CD5A-6E8E-4B40-B78D-63AB6F9FDCBF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5BC1CD5A-6E8E-4B40-B78D-63AB6F9FDCBF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5BC1CD5A-6E8E-4B40-B78D-63AB6F9FDCBF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5BC1CD5A-6E8E-4B40-B78D-63AB6F9FDCBF}.Release|Any CPU.Build.0 = Release|Any CPU + {50213488-E465-4FF2-BE8D-8C55FBEEF241}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {50213488-E465-4FF2-BE8D-8C55FBEEF241}.Debug|Any CPU.Build.0 = Debug|Any CPU + {50213488-E465-4FF2-BE8D-8C55FBEEF241}.Release|Any CPU.ActiveCfg = Release|Any CPU + {50213488-E465-4FF2-BE8D-8C55FBEEF241}.Release|Any CPU.Build.0 = Release|Any CPU + {721A7A64-0C35-408D-BFA6-1F0168623033}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {721A7A64-0C35-408D-BFA6-1F0168623033}.Debug|Any CPU.Build.0 = Debug|Any CPU + {721A7A64-0C35-408D-BFA6-1F0168623033}.Release|Any CPU.ActiveCfg = Release|Any CPU + {721A7A64-0C35-408D-BFA6-1F0168623033}.Release|Any CPU.Build.0 = Release|Any CPU + {D43F90F2-267E-4056-A234-058AC7CF883C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D43F90F2-267E-4056-A234-058AC7CF883C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D43F90F2-267E-4056-A234-058AC7CF883C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D43F90F2-267E-4056-A234-058AC7CF883C}.Release|Any CPU.Build.0 = Release|Any CPU + {69B4E5B7-C783-444F-A4E8-A09BE7A1F74A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {69B4E5B7-C783-444F-A4E8-A09BE7A1F74A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {69B4E5B7-C783-444F-A4E8-A09BE7A1F74A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {69B4E5B7-C783-444F-A4E8-A09BE7A1F74A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/LibrarySolution.v12.suo b/LibrarySolution.v12.suo index e7af155..4096eb0 100644 Binary files a/LibrarySolution.v12.suo and b/LibrarySolution.v12.suo differ diff --git a/MultipleParameters/bin/Debug/MultipleParameters.exe b/MultipleParameters/bin/Debug/MultipleParameters.exe index 652d15a..f071fd7 100644 Binary files a/MultipleParameters/bin/Debug/MultipleParameters.exe and b/MultipleParameters/bin/Debug/MultipleParameters.exe differ diff --git a/MultipleParameters/bin/Debug/MultipleParameters.pdb b/MultipleParameters/bin/Debug/MultipleParameters.pdb index 9138ed8..e7015a7 100644 Binary files a/MultipleParameters/bin/Debug/MultipleParameters.pdb and b/MultipleParameters/bin/Debug/MultipleParameters.pdb differ diff --git a/MultipleParameters/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/MultipleParameters/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index bdd71c1..6540e4d 100644 Binary files a/MultipleParameters/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/MultipleParameters/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/MultipleParameters/obj/Debug/MultipleParameters.csproj.FileListAbsolute.txt b/MultipleParameters/obj/Debug/MultipleParameters.csproj.FileListAbsolute.txt index 09f47f0..2d0dc47 100644 --- a/MultipleParameters/obj/Debug/MultipleParameters.csproj.FileListAbsolute.txt +++ b/MultipleParameters/obj/Debug/MultipleParameters.csproj.FileListAbsolute.txt @@ -3,3 +3,8 @@ C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\MultiplePar C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\MultipleParameters\obj\Debug\MultipleParameters.exe C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\MultipleParameters\obj\Debug\MultipleParameters.pdb C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\MultipleParameters\obj\Debug\MultipleParameters.csprojResolveAssemblyReference.cache +C:\Users\love_\Documents\GitHub\LibrarySolution\MultipleParameters\bin\Debug\MultipleParameters.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\MultipleParameters\bin\Debug\MultipleParameters.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\MultipleParameters\obj\Debug\MultipleParameters.csprojResolveAssemblyReference.cache +C:\Users\love_\Documents\GitHub\LibrarySolution\MultipleParameters\obj\Debug\MultipleParameters.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\MultipleParameters\obj\Debug\MultipleParameters.pdb diff --git a/MultipleParameters/obj/Debug/MultipleParameters.exe b/MultipleParameters/obj/Debug/MultipleParameters.exe index 652d15a..f071fd7 100644 Binary files a/MultipleParameters/obj/Debug/MultipleParameters.exe and b/MultipleParameters/obj/Debug/MultipleParameters.exe differ diff --git a/MultipleParameters/obj/Debug/MultipleParameters.pdb b/MultipleParameters/obj/Debug/MultipleParameters.pdb index 9138ed8..e7015a7 100644 Binary files a/MultipleParameters/obj/Debug/MultipleParameters.pdb and b/MultipleParameters/obj/Debug/MultipleParameters.pdb differ diff --git a/NetReflection/bin/Debug/NetReflection.exe b/NetReflection/bin/Debug/NetReflection.exe index a9e90c2..9b37873 100644 Binary files a/NetReflection/bin/Debug/NetReflection.exe and b/NetReflection/bin/Debug/NetReflection.exe differ diff --git a/NetReflection/bin/Debug/NetReflection.pdb b/NetReflection/bin/Debug/NetReflection.pdb index 7e3cee3..d100b89 100644 Binary files a/NetReflection/bin/Debug/NetReflection.pdb and b/NetReflection/bin/Debug/NetReflection.pdb differ diff --git a/NetReflection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/NetReflection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index f9fdd39..dd03dc9 100644 Binary files a/NetReflection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/NetReflection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/NetReflection/obj/Debug/NetReflection.csproj.FileListAbsolute.txt b/NetReflection/obj/Debug/NetReflection.csproj.FileListAbsolute.txt index 15e1dcf..a8fa07c 100644 --- a/NetReflection/obj/Debug/NetReflection.csproj.FileListAbsolute.txt +++ b/NetReflection/obj/Debug/NetReflection.csproj.FileListAbsolute.txt @@ -4,3 +4,9 @@ C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\NetReflecti C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\NetReflection\obj\Debug\NetReflection.csprojResolveAssemblyReference.cache C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\NetReflection\obj\Debug\NetReflection.exe C:\Users\love_\documents\visual studio 2013\Projects\LibrarySolution\NetReflection\obj\Debug\NetReflection.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\NetReflection\bin\Debug\NetReflection.exe.config +C:\Users\love_\Documents\GitHub\LibrarySolution\NetReflection\bin\Debug\NetReflection.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\NetReflection\bin\Debug\NetReflection.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\NetReflection\obj\Debug\NetReflection.csprojResolveAssemblyReference.cache +C:\Users\love_\Documents\GitHub\LibrarySolution\NetReflection\obj\Debug\NetReflection.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\NetReflection\obj\Debug\NetReflection.pdb diff --git a/NetReflection/obj/Debug/NetReflection.exe b/NetReflection/obj/Debug/NetReflection.exe index a9e90c2..9b37873 100644 Binary files a/NetReflection/obj/Debug/NetReflection.exe and b/NetReflection/obj/Debug/NetReflection.exe differ diff --git a/NetReflection/obj/Debug/NetReflection.pdb b/NetReflection/obj/Debug/NetReflection.pdb index 7e3cee3..d100b89 100644 Binary files a/NetReflection/obj/Debug/NetReflection.pdb and b/NetReflection/obj/Debug/NetReflection.pdb differ diff --git a/ThreadExample/Program.cs b/ThreadExample/Program.cs new file mode 100644 index 0000000..c6d10be --- /dev/null +++ b/ThreadExample/Program.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading; + +namespace ThreadExample +{ + class Program + { + static void Main(string[] args) + { + + } + } +} diff --git a/ThreadExample/Properties/AssemblyInfo.cs b/ThreadExample/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..921d015 --- /dev/null +++ b/ThreadExample/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过以下 +// 特性集控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("ThreadExample")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ThreadExample")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 使此程序集中的类型 +// 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, +// 则将该类型上的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("10ae38d8-1fd4-4517-8163-0b3c07c7e152")] + +// 程序集的版本信息由下面四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +// 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, +// 方法是按如下所示使用“*”: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ThreadExample/ThreadExample.csproj b/ThreadExample/ThreadExample.csproj new file mode 100644 index 0000000..cffc776 --- /dev/null +++ b/ThreadExample/ThreadExample.csproj @@ -0,0 +1,55 @@ + + + + + Debug + AnyCPU + {69B4E5B7-C783-444F-A4E8-A09BE7A1F74A} + Exe + Properties + ThreadExample + ThreadExample + v4.0 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Virtual_Override_New/bin/Debug/Virtual_Override_New.exe b/Virtual_Override_New/bin/Debug/Virtual_Override_New.exe index 52bf177..6f065e9 100644 Binary files a/Virtual_Override_New/bin/Debug/Virtual_Override_New.exe and b/Virtual_Override_New/bin/Debug/Virtual_Override_New.exe differ diff --git a/Virtual_Override_New/bin/Debug/Virtual_Override_New.pdb b/Virtual_Override_New/bin/Debug/Virtual_Override_New.pdb index b9467ca..6130640 100644 Binary files a/Virtual_Override_New/bin/Debug/Virtual_Override_New.pdb and b/Virtual_Override_New/bin/Debug/Virtual_Override_New.pdb differ diff --git a/Virtual_Override_New/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Virtual_Override_New/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 5ad7afc..686ef5e 100644 Binary files a/Virtual_Override_New/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Virtual_Override_New/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Virtual_Override_New/obj/Debug/Virtual_Override_New.csproj.FileListAbsolute.txt b/Virtual_Override_New/obj/Debug/Virtual_Override_New.csproj.FileListAbsolute.txt index 6163ea5..f5de68a 100644 --- a/Virtual_Override_New/obj/Debug/Virtual_Override_New.csproj.FileListAbsolute.txt +++ b/Virtual_Override_New/obj/Debug/Virtual_Override_New.csproj.FileListAbsolute.txt @@ -4,3 +4,9 @@ c:\users\love_\documents\visual studio 2013\Projects\LibrarySolution\Virtual_Ove c:\users\love_\documents\visual studio 2013\Projects\LibrarySolution\Virtual_Override_New\obj\Debug\Virtual_Override_New.csprojResolveAssemblyReference.cache c:\users\love_\documents\visual studio 2013\Projects\LibrarySolution\Virtual_Override_New\obj\Debug\Virtual_Override_New.exe c:\users\love_\documents\visual studio 2013\Projects\LibrarySolution\Virtual_Override_New\obj\Debug\Virtual_Override_New.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\Virtual_Override_New\bin\Debug\Virtual_Override_New.exe.config +C:\Users\love_\Documents\GitHub\LibrarySolution\Virtual_Override_New\bin\Debug\Virtual_Override_New.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\Virtual_Override_New\bin\Debug\Virtual_Override_New.pdb +C:\Users\love_\Documents\GitHub\LibrarySolution\Virtual_Override_New\obj\Debug\Virtual_Override_New.csprojResolveAssemblyReference.cache +C:\Users\love_\Documents\GitHub\LibrarySolution\Virtual_Override_New\obj\Debug\Virtual_Override_New.exe +C:\Users\love_\Documents\GitHub\LibrarySolution\Virtual_Override_New\obj\Debug\Virtual_Override_New.pdb diff --git a/Virtual_Override_New/obj/Debug/Virtual_Override_New.exe b/Virtual_Override_New/obj/Debug/Virtual_Override_New.exe index 52bf177..6f065e9 100644 Binary files a/Virtual_Override_New/obj/Debug/Virtual_Override_New.exe and b/Virtual_Override_New/obj/Debug/Virtual_Override_New.exe differ diff --git a/Virtual_Override_New/obj/Debug/Virtual_Override_New.pdb b/Virtual_Override_New/obj/Debug/Virtual_Override_New.pdb index b9467ca..6130640 100644 Binary files a/Virtual_Override_New/obj/Debug/Virtual_Override_New.pdb and b/Virtual_Override_New/obj/Debug/Virtual_Override_New.pdb differ