|
39 | 39 | <Reference Include="System.Xml" />
|
40 | 40 | </ItemGroup>
|
41 | 41 | <ItemGroup>
|
42 |
| - <Compile Include="AVLTree.cs" /> |
43 |
| - <Compile Include="BinarySearchTree.cs" /> |
44 |
| - <Compile Include="Interfaces\IAVLTree.cs" /> |
45 |
| - <Compile Include="Interfaces\IBinarySearchTree.cs" /> |
46 |
| - <Compile Include="Interfaces\IMaxHeap.cs" /> |
47 |
| - <Compile Include="Interfaces\IMinHeap.cs" /> |
| 42 | + <Compile Include="Trees\AVLTree.cs" /> |
| 43 | + <Compile Include="Trees\BinarySearchTree.cs" /> |
| 44 | + <Compile Include="Trees\IAVLTree.cs" /> |
| 45 | + <Compile Include="Trees\IBinarySearchTree.cs" /> |
| 46 | + <Compile Include="Heaps\IMaxHeap.cs" /> |
| 47 | + <Compile Include="Heaps\IMinHeap.cs" /> |
48 | 48 | <Compile Include="Properties\AssemblyInfo.cs" />
|
49 |
| - <Compile Include="Stack.cs" /> |
50 |
| - <Compile Include="ArrayList.cs" /> |
51 |
| - <Compile Include="DLinkedList.cs" /> |
52 |
| - <Compile Include="SLinkedList.cs" /> |
53 |
| - <Compile Include="Queue.cs" /> |
54 |
| - <Compile Include="MinHeap.cs" /> |
55 |
| - <Compile Include="MaxHeap.cs" /> |
56 |
| - <Compile Include="Helpers\Helpers.cs" /> |
57 |
| - <Compile Include="KeyedPriorityQueue.cs" /> |
58 |
| - <Compile Include="PriorityQueue.cs" /> |
59 |
| - <Compile Include="Helpers\Comparers.cs" /> |
60 |
| - <Compile Include="BinaryTree.cs" /> |
61 |
| - <Compile Include="Interfaces\IBinaryTree.cs" /> |
| 49 | + <Compile Include="Lists\Stack.cs" /> |
| 50 | + <Compile Include="Lists\ArrayList.cs" /> |
| 51 | + <Compile Include="Lists\DLinkedList.cs" /> |
| 52 | + <Compile Include="Lists\SLinkedList.cs" /> |
| 53 | + <Compile Include="Lists\Queue.cs" /> |
| 54 | + <Compile Include="Heaps\MinHeap.cs" /> |
| 55 | + <Compile Include="Heaps\MaxHeap.cs" /> |
| 56 | + <Compile Include="Common\Helpers.cs" /> |
| 57 | + <Compile Include="Heaps\KeyedPriorityQueue.cs" /> |
| 58 | + <Compile Include="Heaps\PriorityQueue.cs" /> |
| 59 | + <Compile Include="Common\Comparers.cs" /> |
| 60 | + <Compile Include="Trees\BinaryTree.cs" /> |
| 61 | + <Compile Include="Trees\IBinaryTree.cs" /> |
62 | 62 | </ItemGroup>
|
63 | 63 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
64 | 64 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
0 commit comments