5. [2 marks] Can we do better than this? Recall that the human player is at some fixed location (px, py). Your task is to work out how you would sort the array A so that those enemy AIs that need to be marked can be identified in log(N) time. Specifically, complete the following comparison function that would be used while sorting the array A. Here, (x1, y1) and (x2, y2) are two points from the array A. The function should return true if it considers the first point to be less than or equal to the second, and should return false otherwise. Your function can use the player’s coordinate (px, py) as global variables, i.e. you are allowed to refer to px and py in your function. 2 function LessOrEqualTo((x1, y1),(x2, y2)) . . . 6. [3 marks] Now, supposing the array has been sorted using your comparison function, implement an algorithm whose worst case complexity is in Θ(log(N)) that determines which array elements should be marked. Your function should take the bound b as an argument, and may also take the player’s coorinates (px, py).
“The Cabin in the Woods” Description
The Cabin in the Woods 1. Joss Whedon says that ‘The Cabin in the Woods’ is “your basic horror movie taken apart; five kids go to a cabin in the woods to have a fun weekend of partying and possibly sex… and are therefore dismembered”. Whedon and Goddard have in essence tried to create a […]