├── Chapter02 ├── .vs │ └── Chapter02 │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── Chapter02.sln ├── CircularLinkedList │ ├── App.config │ ├── CircularLinkedList.cs │ ├── CircularLinkedList.csproj │ ├── CircularLinkedListEnumerator.cs │ ├── CircularLinkedListExtensions.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── CircularLinkedList.exe │ │ │ ├── CircularLinkedList.exe.config │ │ │ └── CircularLinkedList.pdb │ └── obj │ │ └── Debug │ │ ├── CircularLinkedList.csproj.CoreCompileInputs.cache │ │ ├── CircularLinkedList.csproj.FileListAbsolute.txt │ │ ├── CircularLinkedList.csprojResolveAssemblyReference.cache │ │ ├── CircularLinkedList.exe │ │ ├── CircularLinkedList.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── JaggedArrays │ ├── App.config │ ├── JaggedArrays.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TransportEnum.cs │ ├── TransportEnumExtensions.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── JaggedArrays.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── LinkedLists │ ├── App.config │ ├── LinkedLists.csproj │ ├── Page.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LinkedLists.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── MultidimensionalArrays01 │ ├── App.config │ ├── MultidimensionalArrays01.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MultidimensionalArrays01.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── MultidimensionalArrays02 │ ├── App.config │ ├── MultidimensionalArrays02.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TerrainEnum.cs │ ├── TerrainEnumExtensions.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MultidimensionalArrays02.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SimpleLists01 │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SimpleLists01.csproj │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SimpleLists01.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SimpleLists02 │ ├── App.config │ ├── CountryEnum.cs │ ├── Person.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SimpleLists02.csproj │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SimpleLists02.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SingleDimensionalArrays │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SingleDimensionalArrays.csproj │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SingleDimensionalArrays.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SortedLists │ ├── App.config │ ├── CountryEnum.cs │ ├── Person.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SortedLists.csproj │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SortedLists.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── SortingAlgorithms │ ├── App.config │ ├── BubbleSort.cs │ ├── InsertionSort.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── QuickSort.cs │ ├── SelectionSort.cs │ ├── SortingAlgorithms.csproj │ └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SortingAlgorithms.csproj.CoreCompileInputs.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Chapter03 ├── .vs │ └── Chapter03 │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── CallCenterMany │ ├── App.config │ ├── CallCenter.cs │ ├── CallCenterMany.csproj │ ├── IncomingCall.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── CallCenterMany.csproj.CoreCompileInputs.cache │ │ ├── CallCenterMany.csprojResolveAssemblyReference.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── CallCenterPriority │ ├── App.config │ ├── CallCenter.cs │ ├── CallCenterPriority.csproj │ ├── IncomingCall.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── CallCenterPriority.csproj.CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── CallCenterSingle │ ├── App.config │ ├── CallCenter.cs │ ├── CallCenterSingle.csproj │ ├── IncomingCall.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── CallCenterSingle.csproj.CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Chapter03.sln ├── HanoiTowers │ ├── App.config │ ├── HanoiTower.cs │ ├── HanoiTowers.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── HanoiTowers.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── ReverseWords │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ReverseWords.csproj │ └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ReverseWords.csproj.CoreCompileInputs.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Chapter04 ├── .vs │ └── Chapter04 │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── Chapter04.sln ├── DictionaryDefinitions │ ├── App.config │ ├── DictionaryDefinitions.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── DictionaryDefinitions.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── DictionaryProductLocation │ ├── App.config │ ├── DictionaryProductLocation.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── DictionaryProductLocation.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── DictionaryUserDetails │ ├── App.config │ ├── DictionaryUserDetails.csproj │ ├── Employee.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── DictionaryUserDetails.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── HashtablePhoneBook │ ├── App.config │ ├── HashtablePhoneBook.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── HashtablePhoneBook.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SetCoupons │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SetCoupons.csproj │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SetCoupons.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SetDuplicates │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SetDuplicates.csproj │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SetDuplicates.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── SetPools │ ├── App.config │ ├── PoolTypeEnum.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SetPools.csproj │ └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SetPools.csproj.CoreCompileInputs.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Chapter05 ├── .vs │ └── Chapter05 │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── AVL │ ├── AVL.csproj │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── AVL.csproj.CoreCompileInputs.cache │ │ ├── AVL.csprojResolveAssemblyReference.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Chapter05.sln ├── Heap │ ├── App.config │ ├── Heap.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Heap.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Quiz │ ├── App.config │ ├── BinaryTree.cs │ ├── BinaryTreeNode.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Quiz.csproj │ ├── QuizItem.cs │ ├── TraversalEnum.cs │ ├── TreeNode.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Quiz.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── RedBlackTree │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedBlackTree.csproj │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── RedBlackTree.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── Trees │ ├── App.config │ ├── BinarySearchTree.cs │ ├── BinaryTree.cs │ ├── BinaryTreeNode.cs │ ├── Person.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TraversalEnum.cs │ ├── Tree.cs │ ├── TreeNode.cs │ ├── Trees.csproj │ ├── bin │ └── Debug │ │ ├── Trees.exe │ │ ├── Trees.exe.config │ │ └── Trees.pdb │ └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Trees.csproj.CoreCompileInputs.cache │ ├── Trees.csproj.FileListAbsolute.txt │ ├── Trees.csprojResolveAssemblyReference.cache │ ├── Trees.exe │ └── Trees.pdb ├── Chapter06 ├── .vs │ └── Chapter06 │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── Cable │ ├── App.config │ ├── Cable.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── Cable.csproj.CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Chapter06.sln ├── GameMap │ ├── App.config │ ├── GameMap.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GameMap.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Graphs │ ├── App.config │ ├── Edge.cs │ ├── EdgeTypeEnum.cs │ ├── Graph.cs │ ├── Graphs.csproj │ ├── Node.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Subset.cs │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Graphs.csproj.CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── VoivodeshipMap │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── VoivodeshipMap.csproj │ └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── VoivodeshipMap.csproj.CoreCompileInputs.cache ├── LICENSE └── README.md /Chapter02/.vs/Chapter02/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/.vs/Chapter02/v15/.suo -------------------------------------------------------------------------------- /Chapter02/.vs/Chapter02/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/.vs/Chapter02/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/.vs/Chapter02/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter02/Chapter02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/Chapter02.sln -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/App.config -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/CircularLinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/CircularLinkedList.cs -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/CircularLinkedList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/CircularLinkedList.csproj -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/CircularLinkedListEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/CircularLinkedListEnumerator.cs -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/CircularLinkedListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/CircularLinkedListExtensions.cs -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/Program.cs -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/bin/Debug/CircularLinkedList.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/bin/Debug/CircularLinkedList.exe -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/bin/Debug/CircularLinkedList.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/bin/Debug/CircularLinkedList.exe.config -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/bin/Debug/CircularLinkedList.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/bin/Debug/CircularLinkedList.pdb -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7b5310c083acddb5ac14f4fc45a40e59bba6a77e 2 | -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.exe -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/obj/Debug/CircularLinkedList.pdb -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/CircularLinkedList/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/CircularLinkedList/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/JaggedArrays/App.config -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/JaggedArrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/JaggedArrays/JaggedArrays.csproj -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/JaggedArrays/Program.cs -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/JaggedArrays/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/TransportEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/JaggedArrays/TransportEnum.cs -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/TransportEnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/JaggedArrays/TransportEnumExtensions.cs -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/JaggedArrays/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/obj/Debug/JaggedArrays.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a98d0ebfad32156844b7ad9c085f69c4a9950aa8 2 | -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/JaggedArrays/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/LinkedLists/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/LinkedLists/App.config -------------------------------------------------------------------------------- /Chapter02/LinkedLists/LinkedLists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/LinkedLists/LinkedLists.csproj -------------------------------------------------------------------------------- /Chapter02/LinkedLists/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/LinkedLists/Page.cs -------------------------------------------------------------------------------- /Chapter02/LinkedLists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/LinkedLists/Program.cs -------------------------------------------------------------------------------- /Chapter02/LinkedLists/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/LinkedLists/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/LinkedLists/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/LinkedLists/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/LinkedLists/obj/Debug/LinkedLists.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9ee366875afe245fc52d770870a4d9467bf0227b 2 | -------------------------------------------------------------------------------- /Chapter02/LinkedLists/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/LinkedLists/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/LinkedLists/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays01/App.config -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/MultidimensionalArrays01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays01/MultidimensionalArrays01.csproj -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays01/Program.cs -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays01/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays01/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/obj/Debug/MultidimensionalArrays01.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays01/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays02/App.config -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/MultidimensionalArrays02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays02/MultidimensionalArrays02.csproj -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays02/Program.cs -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays02/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/TerrainEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays02/TerrainEnum.cs -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/TerrainEnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays02/TerrainEnumExtensions.cs -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/MultidimensionalArrays02/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/obj/Debug/MultidimensionalArrays02.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0b331deefdbfaad9ec9c9d508f92523a3812065e 2 | -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/MultidimensionalArrays02/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists01/App.config -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists01/Program.cs -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists01/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/SimpleLists01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists01/SimpleLists01.csproj -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists01/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/obj/Debug/SimpleLists01.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SimpleLists01/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists02/App.config -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/CountryEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists02/CountryEnum.cs -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists02/Person.cs -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists02/Program.cs -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists02/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/SimpleLists02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists02/SimpleLists02.csproj -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists02/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/obj/Debug/SimpleLists02.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SimpleLists02/obj/Debug/SimpleLists02.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SimpleLists02/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SingleDimensionalArrays/App.config -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SingleDimensionalArrays/Program.cs -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SingleDimensionalArrays/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/SingleDimensionalArrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SingleDimensionalArrays/SingleDimensionalArrays.csproj -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SingleDimensionalArrays/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/obj/Debug/SingleDimensionalArrays.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SingleDimensionalArrays/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SortedLists/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortedLists/App.config -------------------------------------------------------------------------------- /Chapter02/SortedLists/CountryEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortedLists/CountryEnum.cs -------------------------------------------------------------------------------- /Chapter02/SortedLists/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortedLists/Person.cs -------------------------------------------------------------------------------- /Chapter02/SortedLists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortedLists/Program.cs -------------------------------------------------------------------------------- /Chapter02/SortedLists/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortedLists/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/SortedLists/SortedLists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortedLists/SortedLists.csproj -------------------------------------------------------------------------------- /Chapter02/SortedLists/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortedLists/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/SortedLists/obj/Debug/SortedLists.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortedLists/obj/Debug/SortedLists.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /Chapter02/SortedLists/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SortedLists/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SortedLists/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/App.config -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/BubbleSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/BubbleSort.cs -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/InsertionSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/InsertionSort.cs -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/Program.cs -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/QuickSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/QuickSort.cs -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/SelectionSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/SelectionSort.cs -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/SortingAlgorithms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/SortingAlgorithms.csproj -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter02/SortingAlgorithms/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/obj/Debug/SortingAlgorithms.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8ef624fdbdd874a15f198b213398bc141956bf7b 2 | -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/SortingAlgorithms/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/.vs/Chapter03/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/.vs/Chapter03/v15/.suo -------------------------------------------------------------------------------- /Chapter03/.vs/Chapter03/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/.vs/Chapter03/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/.vs/Chapter03/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterMany/App.config -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/CallCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterMany/CallCenter.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/CallCenterMany.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterMany/CallCenterMany.csproj -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/IncomingCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterMany/IncomingCall.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterMany/Program.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterMany/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/obj/Debug/CallCenterMany.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a77c1df6a88554189df40b25a2d9bbd0bd0a9e82 2 | -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/obj/Debug/CallCenterMany.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterMany/obj/Debug/CallCenterMany.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterMany/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/CallCenterMany/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterPriority/App.config -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/CallCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterPriority/CallCenter.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/CallCenterPriority.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterPriority/CallCenterPriority.csproj -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/IncomingCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterPriority/IncomingCall.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterPriority/Program.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterPriority/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/obj/Debug/CallCenterPriority.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a77c1df6a88554189df40b25a2d9bbd0bd0a9e82 2 | -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterPriority/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/CallCenterPriority/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterSingle/App.config -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/CallCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterSingle/CallCenter.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/CallCenterSingle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterSingle/CallCenterSingle.csproj -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/IncomingCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterSingle/IncomingCall.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterSingle/Program.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterSingle/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/obj/Debug/CallCenterSingle.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a77c1df6a88554189df40b25a2d9bbd0bd0a9e82 2 | -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/CallCenterSingle/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/CallCenterSingle/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/Chapter03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/Chapter03.sln -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/HanoiTowers/App.config -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/HanoiTower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/HanoiTowers/HanoiTower.cs -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/HanoiTowers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/HanoiTowers/HanoiTowers.csproj -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/HanoiTowers/Program.cs -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/HanoiTowers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/HanoiTowers/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/obj/Debug/HanoiTowers.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4476be590da145a18d560be0ff75e51a250b904f 2 | -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/HanoiTowers/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/ReverseWords/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/ReverseWords/App.config -------------------------------------------------------------------------------- /Chapter03/ReverseWords/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/ReverseWords/Program.cs -------------------------------------------------------------------------------- /Chapter03/ReverseWords/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/ReverseWords/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/ReverseWords/ReverseWords.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/ReverseWords/ReverseWords.csproj -------------------------------------------------------------------------------- /Chapter03/ReverseWords/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter03/ReverseWords/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter03/ReverseWords/obj/Debug/ReverseWords.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter03/ReverseWords/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/ReverseWords/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/ReverseWords/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/.vs/Chapter04/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/.vs/Chapter04/v15/.suo -------------------------------------------------------------------------------- /Chapter04/.vs/Chapter04/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/.vs/Chapter04/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/.vs/Chapter04/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter04/Chapter04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/Chapter04.sln -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryDefinitions/App.config -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/DictionaryDefinitions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryDefinitions/DictionaryDefinitions.csproj -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryDefinitions/Program.cs -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryDefinitions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryDefinitions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/obj/Debug/DictionaryDefinitions.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/DictionaryDefinitions/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryProductLocation/App.config -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/DictionaryProductLocation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryProductLocation/DictionaryProductLocation.csproj -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryProductLocation/Program.cs -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryProductLocation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryProductLocation/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/obj/Debug/DictionaryProductLocation.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/DictionaryProductLocation/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryUserDetails/App.config -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/DictionaryUserDetails.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryUserDetails/DictionaryUserDetails.csproj -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryUserDetails/Employee.cs -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryUserDetails/Program.cs -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryUserDetails/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/DictionaryUserDetails/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/obj/Debug/DictionaryUserDetails.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cc7ca1c6afcd537459da23c63f4d98d77322ac66 2 | -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/DictionaryUserDetails/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/HashtablePhoneBook/App.config -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/HashtablePhoneBook.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/HashtablePhoneBook/HashtablePhoneBook.csproj -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/HashtablePhoneBook/Program.cs -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/HashtablePhoneBook/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/HashtablePhoneBook/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/obj/Debug/HashtablePhoneBook.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/HashtablePhoneBook/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetCoupons/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetCoupons/App.config -------------------------------------------------------------------------------- /Chapter04/SetCoupons/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetCoupons/Program.cs -------------------------------------------------------------------------------- /Chapter04/SetCoupons/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetCoupons/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/SetCoupons/SetCoupons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetCoupons/SetCoupons.csproj -------------------------------------------------------------------------------- /Chapter04/SetCoupons/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetCoupons/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter04/SetCoupons/obj/Debug/SetCoupons.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter04/SetCoupons/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetCoupons/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetCoupons/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetDuplicates/App.config -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetDuplicates/Program.cs -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetDuplicates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/SetDuplicates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetDuplicates/SetDuplicates.csproj -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetDuplicates/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/obj/Debug/SetDuplicates.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetDuplicates/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetPools/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetPools/App.config -------------------------------------------------------------------------------- /Chapter04/SetPools/PoolTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetPools/PoolTypeEnum.cs -------------------------------------------------------------------------------- /Chapter04/SetPools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetPools/Program.cs -------------------------------------------------------------------------------- /Chapter04/SetPools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetPools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter04/SetPools/SetPools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetPools/SetPools.csproj -------------------------------------------------------------------------------- /Chapter04/SetPools/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter04/SetPools/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter04/SetPools/obj/Debug/SetPools.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d89b9cc28d253a3051033d815768c64c7cf902c 2 | -------------------------------------------------------------------------------- /Chapter04/SetPools/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetPools/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/SetPools/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/.vs/Chapter05/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/.vs/Chapter05/v15/.suo -------------------------------------------------------------------------------- /Chapter05/.vs/Chapter05/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/.vs/Chapter05/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/.vs/Chapter05/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter05/AVL/AVL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/AVL/AVL.csproj -------------------------------------------------------------------------------- /Chapter05/AVL/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/AVL/App.config -------------------------------------------------------------------------------- /Chapter05/AVL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/AVL/Program.cs -------------------------------------------------------------------------------- /Chapter05/AVL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/AVL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/AVL/obj/Debug/AVL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter05/AVL/obj/Debug/AVL.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/AVL/obj/Debug/AVL.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter05/AVL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/AVL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter05/AVL/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/AVL/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/AVL/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Chapter05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Chapter05.sln -------------------------------------------------------------------------------- /Chapter05/Heap/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Heap/App.config -------------------------------------------------------------------------------- /Chapter05/Heap/Heap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Heap/Heap.csproj -------------------------------------------------------------------------------- /Chapter05/Heap/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Heap/Program.cs -------------------------------------------------------------------------------- /Chapter05/Heap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Heap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/Heap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Heap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter05/Heap/obj/Debug/Heap.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter05/Heap/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Heap/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Heap/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Quiz/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/App.config -------------------------------------------------------------------------------- /Chapter05/Quiz/BinaryTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/BinaryTree.cs -------------------------------------------------------------------------------- /Chapter05/Quiz/BinaryTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/BinaryTreeNode.cs -------------------------------------------------------------------------------- /Chapter05/Quiz/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/Program.cs -------------------------------------------------------------------------------- /Chapter05/Quiz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/Quiz/Quiz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/Quiz.csproj -------------------------------------------------------------------------------- /Chapter05/Quiz/QuizItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/QuizItem.cs -------------------------------------------------------------------------------- /Chapter05/Quiz/TraversalEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/TraversalEnum.cs -------------------------------------------------------------------------------- /Chapter05/Quiz/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/TreeNode.cs -------------------------------------------------------------------------------- /Chapter05/Quiz/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Quiz/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter05/Quiz/obj/Debug/Quiz.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 68b17a649285d800c829b3c4dffe853bedb10ce2 2 | -------------------------------------------------------------------------------- /Chapter05/Quiz/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Quiz/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Quiz/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/RedBlackTree/App.config -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/RedBlackTree/Program.cs -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/RedBlackTree/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/RedBlackTree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/RedBlackTree/RedBlackTree.csproj -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/RedBlackTree/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/obj/Debug/RedBlackTree.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/RedBlackTree/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Trees/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/App.config -------------------------------------------------------------------------------- /Chapter05/Trees/BinarySearchTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/BinarySearchTree.cs -------------------------------------------------------------------------------- /Chapter05/Trees/BinaryTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/BinaryTree.cs -------------------------------------------------------------------------------- /Chapter05/Trees/BinaryTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/BinaryTreeNode.cs -------------------------------------------------------------------------------- /Chapter05/Trees/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/Person.cs -------------------------------------------------------------------------------- /Chapter05/Trees/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/Program.cs -------------------------------------------------------------------------------- /Chapter05/Trees/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter05/Trees/TraversalEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/TraversalEnum.cs -------------------------------------------------------------------------------- /Chapter05/Trees/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/Tree.cs -------------------------------------------------------------------------------- /Chapter05/Trees/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/TreeNode.cs -------------------------------------------------------------------------------- /Chapter05/Trees/Trees.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/Trees.csproj -------------------------------------------------------------------------------- /Chapter05/Trees/bin/Debug/Trees.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/bin/Debug/Trees.exe -------------------------------------------------------------------------------- /Chapter05/Trees/bin/Debug/Trees.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/bin/Debug/Trees.exe.config -------------------------------------------------------------------------------- /Chapter05/Trees/bin/Debug/Trees.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/bin/Debug/Trees.pdb -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/Trees.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 91e91ac8675c6b5e25130a4fc23ebc1ccb179ef8 2 | -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/Trees.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/obj/Debug/Trees.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/Trees.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/obj/Debug/Trees.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/Trees.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/obj/Debug/Trees.exe -------------------------------------------------------------------------------- /Chapter05/Trees/obj/Debug/Trees.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter05/Trees/obj/Debug/Trees.pdb -------------------------------------------------------------------------------- /Chapter06/.vs/Chapter06/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/.vs/Chapter06/v15/.suo -------------------------------------------------------------------------------- /Chapter06/.vs/Chapter06/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/.vs/Chapter06/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/.vs/Chapter06/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter06/Cable/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Cable/App.config -------------------------------------------------------------------------------- /Chapter06/Cable/Cable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Cable/Cable.csproj -------------------------------------------------------------------------------- /Chapter06/Cable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Cable/Program.cs -------------------------------------------------------------------------------- /Chapter06/Cable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Cable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06/Cable/obj/Debug/Cable.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter06/Cable/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Cable/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter06/Cable/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/Cable/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/Cable/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/Chapter06.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Chapter06.sln -------------------------------------------------------------------------------- /Chapter06/GameMap/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/GameMap/App.config -------------------------------------------------------------------------------- /Chapter06/GameMap/GameMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/GameMap/GameMap.csproj -------------------------------------------------------------------------------- /Chapter06/GameMap/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/GameMap/Program.cs -------------------------------------------------------------------------------- /Chapter06/GameMap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/GameMap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06/GameMap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/GameMap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter06/GameMap/obj/Debug/GameMap.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /Chapter06/GameMap/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/GameMap/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/GameMap/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/Graphs/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/App.config -------------------------------------------------------------------------------- /Chapter06/Graphs/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/Edge.cs -------------------------------------------------------------------------------- /Chapter06/Graphs/EdgeTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/EdgeTypeEnum.cs -------------------------------------------------------------------------------- /Chapter06/Graphs/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/Graph.cs -------------------------------------------------------------------------------- /Chapter06/Graphs/Graphs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/Graphs.csproj -------------------------------------------------------------------------------- /Chapter06/Graphs/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/Node.cs -------------------------------------------------------------------------------- /Chapter06/Graphs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/Program.cs -------------------------------------------------------------------------------- /Chapter06/Graphs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06/Graphs/Subset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/Subset.cs -------------------------------------------------------------------------------- /Chapter06/Graphs/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/Graphs/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter06/Graphs/obj/Debug/Graphs.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 21b0cd47b65ac39cf30df721001f89bbe16093c5 2 | -------------------------------------------------------------------------------- /Chapter06/Graphs/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/Graphs/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/Graphs/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/VoivodeshipMap/App.config -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/VoivodeshipMap/Program.cs -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/VoivodeshipMap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/VoivodeshipMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/VoivodeshipMap/VoivodeshipMap.csproj -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/Chapter06/VoivodeshipMap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/VoivodeshipMap/obj/Debug/VoivodeshipMap.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 02d941efbc43fafdca26cfd3c70cc077be835e19 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/C-Sharp-Data-Structures-and-Algorithms/HEAD/README.md --------------------------------------------------------------------------------