Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. (10 marks) Consider an abstract data type that consists of a set S of positive integers upon which the following two operations can be

image text in transcribed

1. (10 marks) Consider an abstract data type that consists of a set S of positive integers upon which the following two operations can be performed DELETE(S, i): Delete integer i from the set S. If i S, there is no effect. SUCCESSOR(S' i): Return the successor of integer i in S, ie. minU s i j > i). If i has no successor in S. i.e. if i 2 max S, then return 0. Note that it is not necessary for i to be in S. Initially, S is a set of consecutive integers from a to b. For example, if a = 5,b = 10 then ini- tially S-(5, 6, 7, 8, 9, 10). After some DELETE() operations, suppose that S = {6, 8, 10) then SUCCESSOR(S, 14) 0, SUCCESSOR(S, 3) 6 and SUCCESSOR(S, 6) SUCCESSOR(S,7)- 8. In this question you will describe a data structure with O(a(n)) amortized cost per operation by answering the following questions. (c) Provide an algorithm for DELETE that takes (a(n amortized time. 1. (10 marks) Consider an abstract data type that consists of a set S of positive integers upon which the following two operations can be performed DELETE(S, i): Delete integer i from the set S. If i S, there is no effect. SUCCESSOR(S' i): Return the successor of integer i in S, ie. minU s i j > i). If i has no successor in S. i.e. if i 2 max S, then return 0. Note that it is not necessary for i to be in S. Initially, S is a set of consecutive integers from a to b. For example, if a = 5,b = 10 then ini- tially S-(5, 6, 7, 8, 9, 10). After some DELETE() operations, suppose that S = {6, 8, 10) then SUCCESSOR(S, 14) 0, SUCCESSOR(S, 3) 6 and SUCCESSOR(S, 6) SUCCESSOR(S,7)- 8. In this question you will describe a data structure with O(a(n)) amortized cost per operation by answering the following questions. (c) Provide an algorithm for DELETE that takes (a(n amortized time

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

(a) Determine the model for the full factorial experiment.

Answered: 1 week ago

Question

8. Explain the relationship between communication and context.

Answered: 1 week ago