+1 (218) 451-4151
glass
pen
clip
papers
heaphones

1. Can we use a splay tree to sort n comparable elements in O(nlogn) time in the worst case? Why…

1. Can we use a splay tree to sort n comparable elements in O(nlogn) time in the worst case? Why…

1. Can we use a splay tree to sort n comparable elements in O(nlogn) time in the worst case? Why or why not?2. Implement a putIfAbsent method, as originally described in Exercise C-10.33, for the TreeMap class.Exercise C-10.33Consider the goal of adding entry (k,v) to a map only if there does not yet exist some other entry with key k. For a map M (without null values), this might be accomplished as follows.While this accomplishes the goal, its efficiency is less than ideal, as time will be spent on the failed search during the get call, and again during the put call (which always begins by trying to locate an existing entry with the given key). To avoid this inefficiency, some map implementations support a custom method putIfAbsent(k, v) that accomplishes this goal. Given such an implementation of putIfAbsent for the UnsortedTableMap class.