├── .gitattributes └── BTK ├── .vs ├── BTK │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── FileContentIndex │ │ └── fcdbf2ab-3ca3-42b4-9a8d-0310c25757db.vsidx │ └── v17 │ │ ├── .futdcache.v2 │ │ ├── .suo │ │ └── DocumentLayout.json └── ProjectEvaluation │ ├── btk.metadata.v7.bin │ ├── btk.metadata.v8.bin │ ├── btk.projects.v7.bin │ ├── btk.projects.v8.bin │ └── btk.strings.v8.bin ├── Apps ├── Apps.cs ├── Apps.csproj ├── PostFixExample.cs ├── Program.cs ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Apps.deps.json │ │ ├── Apps.dll │ │ ├── Apps.exe │ │ ├── Apps.pdb │ │ ├── Apps.runtimeconfig.json │ │ ├── CustomTypes.dll │ │ ├── CustomTypes.pdb │ │ ├── DataStructures.dll │ │ └── DataStructures.pdb └── obj │ ├── Apps.csproj.nuget.dgspec.json │ ├── Apps.csproj.nuget.g.props │ ├── Apps.csproj.nuget.g.targets │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Apps.AssemblyInfo.cs │ │ ├── Apps.AssemblyInfoInputs.cache │ │ ├── Apps.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Apps.GlobalUsings.g.cs │ │ ├── Apps.assets.cache │ │ ├── Apps.csproj.AssemblyReference.cache │ │ ├── Apps.csproj.BuildWithSkipAnalyzers │ │ ├── Apps.csproj.CoreCompileInputs.cache │ │ ├── Apps.csproj.FileListAbsolute.txt │ │ ├── Apps.csproj.Up2Date │ │ ├── Apps.dll │ │ ├── Apps.genruntimeconfig.cache │ │ ├── Apps.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── Apps.dll │ │ └── refint │ │ └── Apps.dll │ ├── project.assets.json │ └── project.nuget.cache ├── BTK.sln ├── CustomTypes ├── CustomTypes.csproj ├── Student.cs ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── CustomTypes.deps.json │ │ ├── CustomTypes.dll │ │ └── CustomTypes.pdb └── obj │ ├── CustomTypes.csproj.nuget.dgspec.json │ ├── CustomTypes.csproj.nuget.g.props │ ├── CustomTypes.csproj.nuget.g.targets │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── CustomTypes.AssemblyInfo.cs │ │ ├── CustomTypes.AssemblyInfoInputs.cache │ │ ├── CustomTypes.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── CustomTypes.GlobalUsings.g.cs │ │ ├── CustomTypes.assets.cache │ │ ├── CustomTypes.csproj.BuildWithSkipAnalyzers │ │ ├── CustomTypes.csproj.CoreCompileInputs.cache │ │ ├── CustomTypes.csproj.FileListAbsolute.txt │ │ ├── CustomTypes.dll │ │ ├── CustomTypes.pdb │ │ ├── ref │ │ └── CustomTypes.dll │ │ └── refint │ │ └── CustomTypes.dll │ ├── project.assets.json │ └── project.nuget.cache └── DataStructures ├── Array └── Array.cs ├── DataStructures.csproj ├── Graph ├── AdjacencySet │ ├── DiGraph.cs │ ├── Graph.cs │ ├── WeightedDiGraph.cs │ ├── WeightedGraph.cs │ └── cb_AdjancencySet.cd ├── Edge.cs ├── IGraph.cs ├── MinimumSpanning Tree │ ├── Kruskals.cs │ ├── MSTEdge.cs │ └── Prims.cs └── Search │ ├── BreadthFirst.cs │ └── DepthFirst.cs ├── Heap ├── BHeap.cs ├── BinaryHeap.cs ├── MinHeap.cs └── cb_BHeap.cd ├── LinkedList ├── DoublyLinkedList │ ├── DoublyLinkedList.cs │ ├── DoublyLinkedListNode.cs │ └── cb_DoublyLinkedList.cd └── SinglyLinkedList │ ├── SinglyLinkedList.cs │ ├── SinglyLinkedListEnumerator.cs │ ├── SinglyLinkedListNode.cs │ └── cb_SinglyLinkedList.cd ├── Queue ├── ArrayQueue.cs ├── LinkedListQueue.cs ├── Queue.cs └── cb_Queue.cd ├── Set ├── DisjointSet.cs ├── DisjointSetNode.cs └── cb_Disjointset.cd ├── Shared ├── CustomComparer.cs └── SortDirection.cs ├── SortingAlgorithms ├── BubbleSort.cs ├── InsertionSort.cs ├── MergeSortcs.cs ├── QuickSort.cs ├── SelectionSort.cs └── Sorting.cs ├── Stack ├── ArrayStack.cs ├── LinkedListStack.cs ├── Stack.cs └── cb_Stack.cd ├── Tree ├── BST │ ├── BST.cs │ ├── BSTEnumerator.cs │ └── cb_BinaryTree.cd └── BinaryTree │ ├── BinaryTree.cs │ └── Node.cs ├── bin └── Debug │ └── net8.0 │ ├── DataStructures.deps.json │ ├── DataStructures.dll │ └── DataStructures.pdb └── obj ├── DataStructures.csproj.nuget.dgspec.json ├── DataStructures.csproj.nuget.g.props ├── DataStructures.csproj.nuget.g.targets ├── Debug └── net8.0 │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ ├── DataStructures.AssemblyInfo.cs │ ├── DataStructures.AssemblyInfoInputs.cache │ ├── DataStructures.GeneratedMSBuildEditorConfig.editorconfig │ ├── DataStructures.GlobalUsings.g.cs │ ├── DataStructures.assets.cache │ ├── DataStructures.csproj.BuildWithSkipAnalyzers │ ├── DataStructures.csproj.CoreCompileInputs.cache │ ├── DataStructures.csproj.FileListAbsolute.txt │ ├── DataStructures.dll │ ├── DataStructures.pdb │ ├── ref │ └── DataStructures.dll │ └── refint │ └── DataStructures.dll ├── project.assets.json └── project.nuget.cache /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/.gitattributes -------------------------------------------------------------------------------- /BTK/.vs/BTK/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/BTK/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /BTK/.vs/BTK/FileContentIndex/fcdbf2ab-3ca3-42b4-9a8d-0310c25757db.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/BTK/FileContentIndex/fcdbf2ab-3ca3-42b4-9a8d-0310c25757db.vsidx -------------------------------------------------------------------------------- /BTK/.vs/BTK/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/BTK/v17/.futdcache.v2 -------------------------------------------------------------------------------- /BTK/.vs/BTK/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/BTK/v17/.suo -------------------------------------------------------------------------------- /BTK/.vs/BTK/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/BTK/v17/DocumentLayout.json -------------------------------------------------------------------------------- /BTK/.vs/ProjectEvaluation/btk.metadata.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/ProjectEvaluation/btk.metadata.v7.bin -------------------------------------------------------------------------------- /BTK/.vs/ProjectEvaluation/btk.metadata.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/ProjectEvaluation/btk.metadata.v8.bin -------------------------------------------------------------------------------- /BTK/.vs/ProjectEvaluation/btk.projects.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/ProjectEvaluation/btk.projects.v7.bin -------------------------------------------------------------------------------- /BTK/.vs/ProjectEvaluation/btk.projects.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/ProjectEvaluation/btk.projects.v8.bin -------------------------------------------------------------------------------- /BTK/.vs/ProjectEvaluation/btk.strings.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/.vs/ProjectEvaluation/btk.strings.v8.bin -------------------------------------------------------------------------------- /BTK/Apps/Apps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/Apps.cs -------------------------------------------------------------------------------- /BTK/Apps/Apps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/Apps.csproj -------------------------------------------------------------------------------- /BTK/Apps/PostFixExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/PostFixExample.cs -------------------------------------------------------------------------------- /BTK/Apps/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/Program.cs -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/Apps.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/Apps.deps.json -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/Apps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/Apps.dll -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/Apps.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/Apps.exe -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/Apps.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/Apps.pdb -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/Apps.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/Apps.runtimeconfig.json -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/CustomTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/CustomTypes.dll -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/CustomTypes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/CustomTypes.pdb -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/DataStructures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/DataStructures.dll -------------------------------------------------------------------------------- /BTK/Apps/bin/Debug/net8.0/DataStructures.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/bin/Debug/net8.0/DataStructures.pdb -------------------------------------------------------------------------------- /BTK/Apps/obj/Apps.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Apps.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /BTK/Apps/obj/Apps.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Apps.csproj.nuget.g.props -------------------------------------------------------------------------------- /BTK/Apps/obj/Apps.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Apps.csproj.nuget.g.targets -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.AssemblyInfo.cs -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.GlobalUsings.g.cs -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.assets.cache -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.csproj.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.dll -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.genruntimeconfig.cache -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/Apps.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/Apps.pdb -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/ref/Apps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/ref/Apps.dll -------------------------------------------------------------------------------- /BTK/Apps/obj/Debug/net8.0/refint/Apps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/Debug/net8.0/refint/Apps.dll -------------------------------------------------------------------------------- /BTK/Apps/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/project.assets.json -------------------------------------------------------------------------------- /BTK/Apps/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/Apps/obj/project.nuget.cache -------------------------------------------------------------------------------- /BTK/BTK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/BTK.sln -------------------------------------------------------------------------------- /BTK/CustomTypes/CustomTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/CustomTypes.csproj -------------------------------------------------------------------------------- /BTK/CustomTypes/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/Student.cs -------------------------------------------------------------------------------- /BTK/CustomTypes/bin/Debug/net8.0/CustomTypes.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/bin/Debug/net8.0/CustomTypes.deps.json -------------------------------------------------------------------------------- /BTK/CustomTypes/bin/Debug/net8.0/CustomTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/bin/Debug/net8.0/CustomTypes.dll -------------------------------------------------------------------------------- /BTK/CustomTypes/bin/Debug/net8.0/CustomTypes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/bin/Debug/net8.0/CustomTypes.pdb -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/CustomTypes.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/CustomTypes.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/CustomTypes.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/CustomTypes.csproj.nuget.g.props -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/CustomTypes.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/CustomTypes.csproj.nuget.g.targets -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.AssemblyInfo.cs -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.GlobalUsings.g.cs -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.assets.cache -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.dll -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/CustomTypes.pdb -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/ref/CustomTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/ref/CustomTypes.dll -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/Debug/net8.0/refint/CustomTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/Debug/net8.0/refint/CustomTypes.dll -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/project.assets.json -------------------------------------------------------------------------------- /BTK/CustomTypes/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/CustomTypes/obj/project.nuget.cache -------------------------------------------------------------------------------- /BTK/DataStructures/Array/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Array/Array.cs -------------------------------------------------------------------------------- /BTK/DataStructures/DataStructures.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/DataStructures.csproj -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/AdjacencySet/DiGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/AdjacencySet/DiGraph.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/AdjacencySet/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/AdjacencySet/Graph.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/AdjacencySet/WeightedDiGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/AdjacencySet/WeightedDiGraph.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/AdjacencySet/WeightedGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/AdjacencySet/WeightedGraph.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/AdjacencySet/cb_AdjancencySet.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/AdjacencySet/cb_AdjancencySet.cd -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/Edge.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/IGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/IGraph.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/MinimumSpanning Tree/Kruskals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/MinimumSpanning Tree/Kruskals.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/MinimumSpanning Tree/MSTEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/MinimumSpanning Tree/MSTEdge.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/MinimumSpanning Tree/Prims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/MinimumSpanning Tree/Prims.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/Search/BreadthFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/Search/BreadthFirst.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Graph/Search/DepthFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Graph/Search/DepthFirst.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Heap/BHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Heap/BHeap.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Heap/BinaryHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Heap/BinaryHeap.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Heap/MinHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Heap/MinHeap.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Heap/cb_BHeap.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Heap/cb_BHeap.cd -------------------------------------------------------------------------------- /BTK/DataStructures/LinkedList/DoublyLinkedList/DoublyLinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/LinkedList/DoublyLinkedList/DoublyLinkedList.cs -------------------------------------------------------------------------------- /BTK/DataStructures/LinkedList/DoublyLinkedList/DoublyLinkedListNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/LinkedList/DoublyLinkedList/DoublyLinkedListNode.cs -------------------------------------------------------------------------------- /BTK/DataStructures/LinkedList/DoublyLinkedList/cb_DoublyLinkedList.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/LinkedList/DoublyLinkedList/cb_DoublyLinkedList.cd -------------------------------------------------------------------------------- /BTK/DataStructures/LinkedList/SinglyLinkedList/SinglyLinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/LinkedList/SinglyLinkedList/SinglyLinkedList.cs -------------------------------------------------------------------------------- /BTK/DataStructures/LinkedList/SinglyLinkedList/SinglyLinkedListEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/LinkedList/SinglyLinkedList/SinglyLinkedListEnumerator.cs -------------------------------------------------------------------------------- /BTK/DataStructures/LinkedList/SinglyLinkedList/SinglyLinkedListNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/LinkedList/SinglyLinkedList/SinglyLinkedListNode.cs -------------------------------------------------------------------------------- /BTK/DataStructures/LinkedList/SinglyLinkedList/cb_SinglyLinkedList.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/LinkedList/SinglyLinkedList/cb_SinglyLinkedList.cd -------------------------------------------------------------------------------- /BTK/DataStructures/Queue/ArrayQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Queue/ArrayQueue.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Queue/LinkedListQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Queue/LinkedListQueue.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Queue/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Queue/Queue.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Queue/cb_Queue.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Queue/cb_Queue.cd -------------------------------------------------------------------------------- /BTK/DataStructures/Set/DisjointSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Set/DisjointSet.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Set/DisjointSetNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Set/DisjointSetNode.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Set/cb_Disjointset.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Set/cb_Disjointset.cd -------------------------------------------------------------------------------- /BTK/DataStructures/Shared/CustomComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Shared/CustomComparer.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Shared/SortDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Shared/SortDirection.cs -------------------------------------------------------------------------------- /BTK/DataStructures/SortingAlgorithms/BubbleSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/SortingAlgorithms/BubbleSort.cs -------------------------------------------------------------------------------- /BTK/DataStructures/SortingAlgorithms/InsertionSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/SortingAlgorithms/InsertionSort.cs -------------------------------------------------------------------------------- /BTK/DataStructures/SortingAlgorithms/MergeSortcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/SortingAlgorithms/MergeSortcs.cs -------------------------------------------------------------------------------- /BTK/DataStructures/SortingAlgorithms/QuickSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/SortingAlgorithms/QuickSort.cs -------------------------------------------------------------------------------- /BTK/DataStructures/SortingAlgorithms/SelectionSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/SortingAlgorithms/SelectionSort.cs -------------------------------------------------------------------------------- /BTK/DataStructures/SortingAlgorithms/Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/SortingAlgorithms/Sorting.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Stack/ArrayStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Stack/ArrayStack.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Stack/LinkedListStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Stack/LinkedListStack.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Stack/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Stack/Stack.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Stack/cb_Stack.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Stack/cb_Stack.cd -------------------------------------------------------------------------------- /BTK/DataStructures/Tree/BST/BST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Tree/BST/BST.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Tree/BST/BSTEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Tree/BST/BSTEnumerator.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Tree/BST/cb_BinaryTree.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Tree/BST/cb_BinaryTree.cd -------------------------------------------------------------------------------- /BTK/DataStructures/Tree/BinaryTree/BinaryTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Tree/BinaryTree/BinaryTree.cs -------------------------------------------------------------------------------- /BTK/DataStructures/Tree/BinaryTree/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/Tree/BinaryTree/Node.cs -------------------------------------------------------------------------------- /BTK/DataStructures/bin/Debug/net8.0/DataStructures.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/bin/Debug/net8.0/DataStructures.deps.json -------------------------------------------------------------------------------- /BTK/DataStructures/bin/Debug/net8.0/DataStructures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/bin/Debug/net8.0/DataStructures.dll -------------------------------------------------------------------------------- /BTK/DataStructures/bin/Debug/net8.0/DataStructures.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/bin/Debug/net8.0/DataStructures.pdb -------------------------------------------------------------------------------- /BTK/DataStructures/obj/DataStructures.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/DataStructures.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /BTK/DataStructures/obj/DataStructures.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/DataStructures.csproj.nuget.g.props -------------------------------------------------------------------------------- /BTK/DataStructures/obj/DataStructures.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/DataStructures.csproj.nuget.g.targets -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.AssemblyInfo.cs -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.GlobalUsings.g.cs -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.assets.cache -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.dll -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/DataStructures.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/DataStructures.pdb -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/ref/DataStructures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/ref/DataStructures.dll -------------------------------------------------------------------------------- /BTK/DataStructures/obj/Debug/net8.0/refint/DataStructures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/Debug/net8.0/refint/DataStructures.dll -------------------------------------------------------------------------------- /BTK/DataStructures/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/project.assets.json -------------------------------------------------------------------------------- /BTK/DataStructures/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpsarikisla/VeriYapilariII/HEAD/BTK/DataStructures/obj/project.nuget.cache --------------------------------------------------------------------------------