diff --git a/.vs/DataStructHeap/DesignTimeBuild/.dtbcache.v2 b/.vs/DataStructHeap/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000000000000000000000000000000000000..1071baf870bf700ba91d106ca2bfdaf4d65677c6 Binary files /dev/null and b/.vs/DataStructHeap/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/DataStructHeap/v16/.suo b/.vs/DataStructHeap/v16/.suo new file mode 100644 index 0000000000000000000000000000000000000000..d5301265f2b272056efd383faf3ec66ef18e0a1c Binary files /dev/null and b/.vs/DataStructHeap/v16/.suo differ diff --git a/DataStructHeap.sln b/DataStructHeap.sln new file mode 100644 index 0000000000000000000000000000000000000000..8e5cdb50bf8b981b1a218718ef4857983606f4e4 --- /dev/null +++ b/DataStructHeap.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30717.126 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataStructHeap", "DataStructHeap\DataStructHeap.csproj", "{B64DEEB3-45BC-4730-BA36-608CA3D52057}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B64DEEB3-45BC-4730-BA36-608CA3D52057}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B64DEEB3-45BC-4730-BA36-608CA3D52057}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B64DEEB3-45BC-4730-BA36-608CA3D52057}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B64DEEB3-45BC-4730-BA36-608CA3D52057}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BB914780-74C8-4E9B-9B81-6D9A01426D13} + EndGlobalSection +EndGlobal diff --git a/DataStructHeap/DataStructHeap.csproj b/DataStructHeap/DataStructHeap.csproj new file mode 100644 index 0000000000000000000000000000000000000000..c73e0d1692ab38cc8596bbd32ae080d903aaa778 --- /dev/null +++ b/DataStructHeap/DataStructHeap.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/DataStructHeap/Heap.cs b/DataStructHeap/Heap.cs new file mode 100644 index 0000000000000000000000000000000000000000..036855004503a535c2ff045465dacae02395eb99 --- /dev/null +++ b/DataStructHeap/Heap.cs @@ -0,0 +1,129 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace DataStructHeap +{ + public class Heap where T: IComparable + { + public T[] heap; + public int SIZE; + public int count; + + public Heap(int size) + { + SIZE = size; + heap = new T[SIZE]; + count = 0; + } + /// + /// 比较两个变量大小 + /// + /// + /// + /// + static int CompareToT(T t1,T t2) + { + var result=t1.CompareTo(t2); + if (result > 0) + { + return 1; + } + else + { + return -1; + } + } + /// + /// 添加 + /// + /// + public void add(T item) + { + if (count >= SIZE) + { + this.SIZE *= 2; + T[] newarr = new T[this.SIZE]; + this.heap=Expansion(newarr, this.heap); + // throw new Exception("Heap Overflow"); + return; + } + heap[count]=item; + int current = count; + count++; + while (CompareToT(heap[current], heap[(current - 1) / 2]) > 0&& count>1) + { + + + Swap(ref heap, (current - 1) / 2, current); + current = (current - 1) / 2; + } + } + /// + /// 交换 + /// + /// + /// + /// + private void Swap(ref T[] arr, int parent, int current) + { + var temp = arr[parent]; + arr[parent] = arr[current]; + arr[current] = temp; + } + /// + /// 删除 + /// + /// + public T delete() + { + var result = heap[0]; + heap[0] = heap[count - 1]; + heap[count - 1] = default(T); + count --; + int current; + int parent = 0; + bool flag = true; + //找到子节点下的哪一个大的下标 + while (flag) + { + current = CompareToT(heap[2 * parent + 1], heap[2 * parent + 2]) > 0 ? 2 * parent + 1 : 2 * parent + 2; + if (CompareToT(heap[parent], heap[current]) >= 1) + { + flag = false; + } + Swap(ref heap, parent, current); + parent = current; + } + return result; + } + /// + /// 输出 + /// + public void print() + { + for (int i = 0; i < count/2-1; i++) + { + + for (int j = i; j where T : IComparable + { + public Heap heap = null; + public MergeArray() + { + + } + + //合并两个优先队列 + /// + /// 两个数组 + /// + /// + /// + /// + public Heap MergeList( Heap target1, Heap target2) + { + + var temp = new Heap(target1.SIZE+target2.SIZE); + for (int i = 0; i < target1.count; i++) + { + temp.add(target1.heap[i]); + } + for (int i = 0; i < target2.count; i++) + { + temp.add(target2.heap[i]); + } + return temp; + } + /// + /// 多个数组 + /// + /// + public Heap MergeList( Heap[] target) + { + + Heap heaps = new Heap(0);//1 2 3 4 5 + for (int i = 0; i < target.Length; i++) + { + heaps=MergeList(heaps, target[i]); + } + return heaps; + } + } +} diff --git a/DataStructHeap/Program.cs b/DataStructHeap/Program.cs new file mode 100644 index 0000000000000000000000000000000000000000..a83b4472c848a3abfa0e707c435f8e8f6bea2702 --- /dev/null +++ b/DataStructHeap/Program.cs @@ -0,0 +1,106 @@ +using System; + +namespace DataStructHeap +{ + class Program + { + #region 堆排序 + static void HeapSort() + { + Heap heap = new Heap(100); + heap.add(8); + heap.add(7); + heap.add(9); + heap.add(10); + heap.add(12); + heap.add(2); + heap.add(3); + heap.add(4); + heap.add(1); + heap.add(1); + heap.add(2); + for (int i = 0; i < heap.count; i++) + { + heap.delete(); + } + Console.ReadLine(); + } + #endregion + + #region 大顶堆 + static void TestHead() + { + Heap heap = new Heap(100); + heap.add(8); + heap.add(7); + heap.add(9); + heap.add(10); + heap.add(12); + heap.add(2); + heap.add(3); + heap.add(4); + heap.add(1); + heap.add(1); + heap.add(2); + //heap.print(); + heap.delete(); + heap.delete(); + heap.delete(); + heap.delete(); + heap.delete(); + heap.delete(); + heap.delete(); + heap.delete(); + heap.delete(); + heap.delete(); + } + + #endregion + + #region 利用优先级队列合并K个有序数组 + static void MergeSortArray() + { + Heap target1 = new Heap(20); + Heap target2 = new Heap(20); + target1.add(1); + target1.add(10); + target1.add(20); + target1.add(8); + target1.add(9); + target1.add(30); + target1.add(80); + + target2.add(2); + target2.add(4); + target2.add(6); + target2.add(7); + target2.add(96); + target2.add(100); + + MergeArray merge = new MergeArray(); + Heap[] arr = new Heap[2]; + arr[0] = target1; + arr[1] = target2; + + merge.heap=merge.MergeList(arr); + for (int i = 0; i < merge.heap.count; i++) + { + Console.WriteLine(merge.heap.heap[i]); + } + } + #endregion + + static void Main(string[] args) + { + //测试堆排序 + //HeapSort(); + + //测试大顶堆 + //TestHead(); + //利用优先级队列合并K个有序数组 + MergeSortArray(); + Console.WriteLine("Hello World!"); + } + + } +} diff --git a/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.deps.json b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.deps.json new file mode 100644 index 0000000000000000000000000000000000000000..a0f7c0812c069e9e51083812843f53f0df453532 --- /dev/null +++ b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": { + "DataStructHeap/1.0.0": { + "runtime": { + "DataStructHeap.dll": {} + } + } + } + }, + "libraries": { + "DataStructHeap/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.dll b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.dll new file mode 100644 index 0000000000000000000000000000000000000000..24fdb557d5b50684a3b2aa4fd9bebd3c54a79631 Binary files /dev/null and b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.dll differ diff --git a/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.exe b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.exe new file mode 100644 index 0000000000000000000000000000000000000000..efecb9c97495507a60c2c9a7716fdd1f0ea349d4 Binary files /dev/null and b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.exe differ diff --git a/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.pdb b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.pdb new file mode 100644 index 0000000000000000000000000000000000000000..11f92193c1e8a98f8f50605047caa83f7d400666 Binary files /dev/null and b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.pdb differ diff --git a/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.runtimeconfig.dev.json b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.runtimeconfig.dev.json new file mode 100644 index 0000000000000000000000000000000000000000..3a38bb9eba22bbda99bea404a4b102657a249ba0 --- /dev/null +++ b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Administrator\\.nuget\\packages", + "D:\\Microsoft\\Xamarin\\NuGet", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder" + ] + } +} \ No newline at end of file diff --git a/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.runtimeconfig.json b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.runtimeconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..bc456d7868bb54ec1809da30e339cd43f0a8a09c --- /dev/null +++ b/DataStructHeap/bin/Debug/netcoreapp3.1/DataStructHeap.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "3.1.0" + } + } +} \ No newline at end of file diff --git a/DataStructHeap/obj/DataStructHeap.csproj.nuget.dgspec.json b/DataStructHeap/obj/DataStructHeap.csproj.nuget.dgspec.json new file mode 100644 index 0000000000000000000000000000000000000000..68cd8dee321bd9cf60719fe3b6ffe0cb93940845 --- /dev/null +++ b/DataStructHeap/obj/DataStructHeap.csproj.nuget.dgspec.json @@ -0,0 +1,65 @@ +{ + "format": 1, + "restore": { + "E:\\项目\\DataStructHeap\\DataStructHeap\\DataStructHeap.csproj": {} + }, + "projects": { + "E:\\项目\\DataStructHeap\\DataStructHeap\\DataStructHeap.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\项目\\DataStructHeap\\DataStructHeap\\DataStructHeap.csproj", + "projectName": "DataStructHeap", + "projectPath": "E:\\项目\\DataStructHeap\\DataStructHeap\\DataStructHeap.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "E:\\项目\\DataStructHeap\\DataStructHeap\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.404\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DataStructHeap/obj/DataStructHeap.csproj.nuget.g.props b/DataStructHeap/obj/DataStructHeap.csproj.nuget.g.props new file mode 100644 index 0000000000000000000000000000000000000000..aee7505ff14ad49eee8f3ef5ffcc620b6f1a58ee --- /dev/null +++ b/DataStructHeap/obj/DataStructHeap.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\;D:\Microsoft\Xamarin\NuGet\;C:\Program Files (x86)\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.7.0 + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/DataStructHeap/obj/DataStructHeap.csproj.nuget.g.targets b/DataStructHeap/obj/DataStructHeap.csproj.nuget.g.targets new file mode 100644 index 0000000000000000000000000000000000000000..53cfaa19b16f3769b2bfc33db3b5c0053c16fdba --- /dev/null +++ b/DataStructHeap/obj/DataStructHeap.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/DataStructHeap/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000000000000000000000000000000000000..ad8dfe1a6310302587a2d0c0111d81b250eb4105 --- /dev/null +++ b/DataStructHeap/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.AssemblyInfo.cs b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.AssemblyInfo.cs new file mode 100644 index 0000000000000000000000000000000000000000..abee23ad077652408c497ebc745ffee6ce2c8e76 --- /dev/null +++ b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DataStructHeap")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DataStructHeap")] +[assembly: System.Reflection.AssemblyTitleAttribute("DataStructHeap")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.AssemblyInfoInputs.cache b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.AssemblyInfoInputs.cache new file mode 100644 index 0000000000000000000000000000000000000000..0256a1c79c69946d5d815ae8d1916ba53b812f88 --- /dev/null +++ b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8784b93beb0ca33f66ef822d6f82636248256c39 diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.assets.cache b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..c9e1ba24c1f0e1353659abd2185e1360814ea2cd Binary files /dev/null and b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.assets.cache differ diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csproj.CoreCompileInputs.cache b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000000000000000000000000000000000000..f1ca40e43791b64b291df73f4ea6ef9ac3ed8be5 --- /dev/null +++ b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6362fd35d9a6e53c2a8172b66ca5f2679246b8d9 diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csproj.FileListAbsolute.txt b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csproj.FileListAbsolute.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdc35a814a21be11f5d20ab7091451ad55d8a809 --- /dev/null +++ b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +E:\项目\DataStructHeap\DataStructHeap\bin\Debug\netcoreapp3.1\DataStructHeap.exe +E:\项目\DataStructHeap\DataStructHeap\bin\Debug\netcoreapp3.1\DataStructHeap.deps.json +E:\项目\DataStructHeap\DataStructHeap\bin\Debug\netcoreapp3.1\DataStructHeap.runtimeconfig.json +E:\项目\DataStructHeap\DataStructHeap\bin\Debug\netcoreapp3.1\DataStructHeap.runtimeconfig.dev.json +E:\项目\DataStructHeap\DataStructHeap\bin\Debug\netcoreapp3.1\DataStructHeap.dll +E:\项目\DataStructHeap\DataStructHeap\bin\Debug\netcoreapp3.1\DataStructHeap.pdb +E:\项目\DataStructHeap\DataStructHeap\obj\Debug\netcoreapp3.1\DataStructHeap.csprojAssemblyReference.cache +E:\项目\DataStructHeap\DataStructHeap\obj\Debug\netcoreapp3.1\DataStructHeap.AssemblyInfoInputs.cache +E:\项目\DataStructHeap\DataStructHeap\obj\Debug\netcoreapp3.1\DataStructHeap.AssemblyInfo.cs +E:\项目\DataStructHeap\DataStructHeap\obj\Debug\netcoreapp3.1\DataStructHeap.csproj.CoreCompileInputs.cache +E:\项目\DataStructHeap\DataStructHeap\obj\Debug\netcoreapp3.1\DataStructHeap.dll +E:\项目\DataStructHeap\DataStructHeap\obj\Debug\netcoreapp3.1\DataStructHeap.pdb +E:\项目\DataStructHeap\DataStructHeap\obj\Debug\netcoreapp3.1\DataStructHeap.genruntimeconfig.cache diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csprojAssemblyReference.cache b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..2e2e4cd48ef53623d9b1b2ede269e8059601fa08 Binary files /dev/null and b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.csprojAssemblyReference.cache differ diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.dll b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.dll new file mode 100644 index 0000000000000000000000000000000000000000..24fdb557d5b50684a3b2aa4fd9bebd3c54a79631 Binary files /dev/null and b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.dll differ diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.exe b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.exe new file mode 100644 index 0000000000000000000000000000000000000000..efecb9c97495507a60c2c9a7716fdd1f0ea349d4 Binary files /dev/null and b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.exe differ diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.genruntimeconfig.cache b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.genruntimeconfig.cache new file mode 100644 index 0000000000000000000000000000000000000000..34bedab819ef1631d37d6e87ef9a716c545a105e --- /dev/null +++ b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.genruntimeconfig.cache @@ -0,0 +1 @@ +86c8e15dd33445635927cfaf398408205fd11473 diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.pdb b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.pdb new file mode 100644 index 0000000000000000000000000000000000000000..11f92193c1e8a98f8f50605047caa83f7d400666 Binary files /dev/null and b/DataStructHeap/obj/Debug/netcoreapp3.1/DataStructHeap.pdb differ diff --git a/DataStructHeap/obj/Debug/netcoreapp3.1/apphost.exe b/DataStructHeap/obj/Debug/netcoreapp3.1/apphost.exe new file mode 100644 index 0000000000000000000000000000000000000000..81c3a10b32cfeec0e167b299786dd98c054edde0 Binary files /dev/null and b/DataStructHeap/obj/Debug/netcoreapp3.1/apphost.exe differ diff --git a/DataStructHeap/obj/project.assets.json b/DataStructHeap/obj/project.assets.json new file mode 100644 index 0000000000000000000000000000000000000000..4933223cedcce1b3cc74ba44de4931c0a3e30380 --- /dev/null +++ b/DataStructHeap/obj/project.assets.json @@ -0,0 +1,72 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {}, + "D:\\Microsoft\\Xamarin\\NuGet\\": {}, + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\项目\\DataStructHeap\\DataStructHeap\\DataStructHeap.csproj", + "projectName": "DataStructHeap", + "projectPath": "E:\\项目\\DataStructHeap\\DataStructHeap\\DataStructHeap.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "E:\\项目\\DataStructHeap\\DataStructHeap\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.404\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DataStructHeap/obj/project.nuget.cache b/DataStructHeap/obj/project.nuget.cache new file mode 100644 index 0000000000000000000000000000000000000000..cfe712fa272c3fc9ee6ce8f50e7935735f6d5e4a --- /dev/null +++ b/DataStructHeap/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "fxCJY8KAK2LM2aoyLqVnSGfRfjwRVGX6u2lrjLfUs+PqciPiVrI+AN5NIHED3LphBy7uN79RfG+ZqDI645+17A==", + "success": true, + "projectFilePath": "E:\\项目\\DataStructHeap\\DataStructHeap\\DataStructHeap.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file