Presentation is loading. Please wait.

Presentation is loading. Please wait.

Accelerated Cascading Advanced Algorithms & Data Structures Lecture Theme 16 Prof. Dr. Th. Ottmann Summer Semester 2006.

Similar presentations


Presentation on theme: "Accelerated Cascading Advanced Algorithms & Data Structures Lecture Theme 16 Prof. Dr. Th. Ottmann Summer Semester 2006."— Presentation transcript:

1 Accelerated Cascading Advanced Algorithms & Data Structures Lecture Theme 16 Prof. Dr. Th. Ottmann Summer Semester 2006

2 2 Fast computation of maximum Input: An array A holding p elements from a linearly ordered universe S. We assume that all the elements in A are distinct. Output: The maximum element from the array A. We use a boolean array M such that M ( k )=1 if and only if A ( k ) is the maximum element in A. Initialization: We allocate p processors to set each entry in M to 1.

3 3 Fast computation of maximum: Step1 Step 1: Assign p processors for each element in A, p 2 processors overall. Consider the p processors allocated to A ( j ). We name these processors as P 1, P 2,..., P i,..., P p. P i compares A ( j ) with A ( i ) : If A ( i ) > A ( j ) then M ( j ) := 0 else do nothing.

4 4 Fast computation of maximum: Step2 Step 2: At the end of Step 1, M ( k ), 1  k  p will be 1 if and only if A ( k ) is the maximum element. We allocate p processors, one for each entry in M. If the entry is 0, the processor does nothing. If the entry is 1, it outputs the index k of the maximum element.

5 5 Processor requirement and PRAM model Complexity: The processor requirement is p 2 and the time complexity is O (1). We need concurrent write facility and hence the Common CRCW PRAM model.

6 6 Optimal computation of maximum This is the same algorithm which we used for adding n numbers.

7 7 Optimal computation of maximum: Analysis This algorithm takes O ( n ) processors and O (log n ) time. We can reduce the processor complexity to O ( n / log n ). Hence the algorithm does optimal O ( n ) work.

8 8 An O (log log n ) time algorithm (1) Instead of a binary tree, we use a more complex tree. Assume that. The root of the tree has children. Each node at the i -th level has children for. Each node at level k has two children.

9 9 An O (log log n ) time algorithm (2) Some Properties The depth of the tree is k. Since The number of nodes at the i -th level is Prove this by induction.

10 10 An O (log log n ) time algorithm (3) The Algorithm The algorithm proceeds level by level, starting from the leaves. At every level, we compute the maximum of all the children of an internal node by the O (1) time algorithm. The time complexity is O (log log n ) since the depth of the tree is O (log log n ).

11 11 An O (log log n ) time algorithm: Work complexity Total Work: Recall that the O (1) time algorithm needs O ( p 2 ) work for p elements. Each node at the i -th level has children. So the total work for each node at the i -th level is.

12 12 Total Work Total Work: There are nodes at the i -th level. Hence the total work for the i -th level is: For O (log log n ) levels, the total work is O ( n log log n ). This is suboptimal.

13 13 Accelerated cascading: Idea The first algorithm which is based on a binary tree, is optimal but slow. The second algorithm is suboptimal, but very fast. We combine these two algorithms through the accelerated cascading strategy. We start with the optimal algorithm until the size of the problem is reduced to a certain value. Then we use the suboptimal but very fast algorithm.

14 14 Accelerated cascading: Phase 1 Phase 1. We apply the binary tree algorithm, starting from the leaves and upto log log log n levels. The number of candidates reduces to The total work done so far is O ( n ) and the total time is O (log log log n ).

15 15 Accelerated cascading: Phase 2 Phase 2. In this phase, we use the fast algorithm on the remaining candidates. The total work is The total time is Theorem: Maximum of n elements can be computed in O (log log n ) time and O ( n ) work on the Common CRCW PRAM.


Download ppt "Accelerated Cascading Advanced Algorithms & Data Structures Lecture Theme 16 Prof. Dr. Th. Ottmann Summer Semester 2006."

Similar presentations


Ads by Google