Skip to content

Commit

Permalink
Separated test code from hash tables.
Browse files Browse the repository at this point in the history
Signed-off-by: unknown <saq10002@iteb-219.ad.engr.uconn.edu>
  • Loading branch information
saq10002 committed Oct 11, 2014
1 parent d5dfb24 commit b5719e3
Show file tree
Hide file tree
Showing 12 changed files with 1,541 additions and 1,458 deletions.
4 changes: 4 additions & 0 deletions YASI_12/YASI_12.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,16 @@
<ClInclude Include="ds.graph.h" />
<ClInclude Include="ds.hashtablebase.h" />
<ClInclude Include="ds.HopScotchHashTable.h" />
<ClInclude Include="ds.HopScotchHashTable.test.h" />
<ClInclude Include="ds.IntLinearProbingHashTable.h" />
<ClInclude Include="ds.IntLinearProbingHashTable.test.h" />
<ClInclude Include="ds.iterator.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="ds.iterator.test.h" />
<ClInclude Include="ds.kvpair.h" />
<ClInclude Include="ds.LinearProbingHashTable.h" />
<ClInclude Include="ds.LinearProbingHashTable.test.h" />
<ClInclude Include="ds.list.h" />
<ClInclude Include="ds.mutableheap.h" />
<ClInclude Include="ds.mutableheap.test.h" />
Expand All @@ -109,6 +112,7 @@
<ClInclude Include="ds.priorityqueue.h" />
<ClInclude Include="ds.priorityqueue.test.h" />
<ClInclude Include="ds.SeparateChainingHashTable.h" />
<ClInclude Include="ds.SeparateChainingHashTable.test.h" />
<ClInclude Include="ds.singlylinkedlist.h" />
<ClInclude Include="ds.singlylinkedlist.test.h" />
<ClInclude Include="ds.tree.h" />
Expand Down
12 changes: 12 additions & 0 deletions YASI_12/YASI_12.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -188,5 +188,17 @@
<ClInclude Include="ds.bstdictionary.test.h">
<Filter>Header Files\Data Structures\Dictionary</Filter>
</ClInclude>
<ClInclude Include="ds.SeparateChainingHashTable.test.h">
<Filter>Header Files\Data Structures\Hash Table</Filter>
</ClInclude>
<ClInclude Include="ds.LinearProbingHashTable.test.h">
<Filter>Header Files\Data Structures\Hash Table</Filter>
</ClInclude>
<ClInclude Include="ds.IntLinearProbingHashTable.test.h">
<Filter>Header Files\Data Structures\Hash Table</Filter>
</ClInclude>
<ClInclude Include="ds.HopScotchHashTable.test.h">
<Filter>Header Files\Data Structures\Hash Table</Filter>
</ClInclude>
</ItemGroup>
</Project>
Loading

0 comments on commit b5719e3

Please sign in to comment.