Answer from cs61c-cm (Christopher Marcellino 15775059) for Question 4 The reference count method will not reclaim this structure since all of the objects still have a count of one, even though the are not currently reachable, because there is a circular reference. The mark and sweep method would succesfully relcaim this object since it would not encounter it during a sweep from the roots, and would then sweep it.