Answer from cs61c-bx (Tuan Ha 16989532) for Question 4 This structure is a circular structure. Hence, it can not be reclaimed using the reference count method. Since circular structure is a form of graph traversal, we can use mark and sweep method to reclaimed the space. We mark the objects as we tranverse as reachable objects, all others are garbage and may be freed.