Repository for the Fall 2021 course web page
View the Project on GitHub IUDataStructuresCourse/course-web-page-Fall-2021
Recall the division method:
h(k) = k mod m
Using the division method and chaining, insert the keys 4, 1, 3, 2, 0 into a hash table with table size 3 (m=3).
Solution:
0 -> [0,3]
1 -> [1,4]
2 -> [2]
Go over the instructor tests for Segment Intersection Project.
Demonstrate a debugging and test creation session.