Presentation is loading. Please wait.

Presentation is loading. Please wait.

Splay trees (Sleator, Tarjan 1983)

Similar presentations


Presentation on theme: "Splay trees (Sleator, Tarjan 1983)"— Presentation transcript:

1 Splay trees (Sleator, Tarjan 1983)

2 Motivation Assume you know the frequencies p1, p2 , ….
What is the best static tree ? You can find it in O(nlog(n)) time (homework)

3 Approximation (Mehlhorn)
0.2 0.1 .04 0.1 0.2 0.1 0.26 0.26 0.1 0.2

4 Approximation (Mehlhorn)
0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.1 0.26

5 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

6 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

7 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

8 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

9 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

10 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

11 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

12 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

13 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

14 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

15 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

16 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

17 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

18 Analysis 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26 An internal node at level i corresponds to an interval of length 1/2i The sum of the weights of the pieces that correspond to an internal node is no larger than the length of the corresponding interval

19 Analysis 0.2 0.1 .04 0.1 0.2 0.1 0.26 0.2 0.1 0.26

20 Main idea Try to arrange so frequently used items are near the root
We shall assume that there is an item in every node including internal nodes. We can change this assumption so that items are at the leaves.

21 First attempt Move the accessed item to the root by doing rotations y
x <===> x C A y B C A B

22 Move to root (example) e d b a c A D E F C B e d a b c A B E F D C e d

23 Move to root (analysis)
There are arbitrary long access sequences such that the time per access is Ω(n) ! Homework ?

24 Splaying Does rotations bottom up on the access path, but rotations are done in pairs in a way that depends on the structure of the path. A splay step: (1) zig - zig z y x A B C D x ==> A y B z C D

25 Splaying (cont) ==> ==> z x y D y z A B C D x A B C y x x C A y
(2) zig - zag z x ==> y D y z A B C D x A B C (3) zig y x ==> x C A y B C A B

26 Splaying (example) ==> ==> i i h H g f e d a b c I J G A B F E D

27 Splaying (example cont)
==> i h H a f g d e b c I J G A B F E D C ==> f d b c A B E D C a h i I J H g e G F h J g I f H A a d e b F G B c E C D

28 Splaying (analysis) Assume each item i has a positive weight w(i) which is arbitrary but fixed. Define the size s(x) of a node x in the tree as the sum of the weights of the items in its subtree. The rank of x: r(x) = log2(s(x)) Measure the splay time by the number of rotations

29 Access lemma The amortized time to splay a node x in a tree with root t is at most 3(r(t) - r(x)) + 1 = O(log(s(t)/s(x))) Potential used: The sum of the ranks of the nodes. This has many consequences:

30 Balance theorem Balance Theorem: Accessing m items in an n node splay tree takes O((m+n) log n) Proof:

31 Proof of the access lemma
The amortized time to splay a node x in a tree with root t is at most 3(r(t) - r(x)) + 1 = O(log(s(t)/s(x))) proof. Consider a splay step. Let s and s’, r and r’ denote the size and the rank function just before and just after the step, respectively. We show that the amortized time of a zig step is at most 3(r’(x) - r(x)) + 1, and that the amortized time of a zig-zig or a zig-zag step is at most 3(r’(x)-r(x)) The lemma then follows by summing up the cost of all splay steps

32 Proof of the access lemma (cont)
(3) zig y x ==> x C A y B C A B amortized time(zig) = 1 +  = 1 + r’(x) + r’(y) - r(x) - r(y)  1 + r’(x) - r(x)  1 + 3(r’(x) - r(x))

33 Proof of the access lemma (cont)
(1) zig - zig z y x A B C D x ==> A y B z C D amortized time(zig-zig) = 2 +  = 2 + r’(x) + r’(y) + r’(z) - r(x) - r(y) - r(z) = 2 + r’(y) + r’(z) - r(x) - r(y)  2 + r’(x) + r’(z) - 2r(x)  2r’(x) - r(x) - r’(z) + r’(x) + r’(z) - 2r(x) = 3(r’(x) - r(x)) 2  -(log(p) + log(q)) = log(1/p) + log(1/q) = log(s’(x)/s(x)) + log(s’(x)/s(z))= r’(x)-r(x) + r’(x)-r(z)

34 Proof of the access lemma (cont)
(2) zig - zag z x ==> y D y z A B C D x A B C Similar. (do at home)

35 Intuition 9 8 7 6 5 4 3 2 1

36 Intuition (Cont)

37 Intuition 9 9 8 8 7 7 6 6 5 5 4 4  = 0 3 1 2 2 3 1

38  = log(5) – log(3) + log(1) – log(5) = -log(3)
9 9 8 8 7 7 6 6 5 1 4 4 5  = log(5) – log(3) + log(1) – log(5) = -log(3) 2 1 3 2 3

39  = log(7) – log(5) + log(1) – log(7) = -log(5)
9 9 8 8 1 7 6 6 7 4 5 1 2 4 3 5  = log(7) – log(5) + log(1) – log(7) = -log(5) 2 3

40  = log(9) – log(7) + log(1) – log(9) = -log(7)
8 9 8 6 7 1 4 6 5 2 7 4 3 5 2 3  = log(9) – log(7) + log(1) – log(9) = -log(7)

41 More consequences of the access lemma

42 Static optimality theorem
For any item i let q(i) be the total number of time i is accessed Static optimality theorem: If every item is accessed at least once then the total access time is O(m +  q(i) log (m/q(i)) ) i=1 n Optimal average access time up to a constant factor.

43 Static finger theorem Suppose all items are numbered from 1 to n in symmetric order. Let the sequence of accessed items be i1,i2,....,im Static finger theorem: Let f be an arbitrary fixed item, the total access time is O(nlog(n) + m +  log(|ij-f| + 1)) j=1 m Splay trees support access within the vicinity of any fixed finger as good as finger search trees.

44 Working set theorem Let t(j), j=1,…,m, denote the # of different items accessed since the last access to item j or since the beginning of the sequence. Working set theorem: The total access time is Proof:

45 Application: Data Compression via Splay Trees
Suppose we want to compress text over some alphabet  Prepare a binary tree containing the items of  at its leaves. To encode a symbol x: Traverse the path from the root to x spitting 0 when you go left and 1 when you go right. Splay at the parent of x and use the new tree to encode the next symbol

46 Compression via splay trees (example)
f g h a b c d e f g h a b c d aabg... 000

47 Compression via splay trees (example)
f g h a b c d e f g h a b c d aabg... 000

48 Compression via splay trees (example)
f g h c d a b a b c d e f g h aabg... 0000 10

49 Compression via splay trees (example)
f g h c d a b a b c d e f g h aabg... 0000 10 1110

50 Decoding Symmetric. The decoder and the encoder must agree on the initial tree.

51 Compression via splay trees (analysis)
How compact is this compression ? Suppose m is the # of characters in the original string The length of the string we produce is m + (cost of splays) by the static optimality theorem m + O(m +  q(i) log (m/q(i)) ) = O(m +  q(i) log (m/q(i)) ) Recall that the entropy of the sequence  q(i) log (m/q(i)) is a lower bound.

52 Compression via splay trees (analysis)
In particular the Huffman code of the sequence is at least  q(i) log (m/q(i)) But to construct it you need to know the frequencies in advance

53 Compression via splay trees (variations)
D. Jones (88) showed that this technique could be competitive with dynamic Huffman coding (Vitter 87) Used a variant of splaying called semi-splaying.

54 Semi - splaying ==> * * ==> *
z y x A B C D ==> Regular zig - zig * Semi-splay zig - zig z * y ==> y D x z * C x A B C D A B Continue splay at y rather than at x.

55 Update operations on splay trees
Catenate(T1,T2): Splay T1 at its largest item, say i. Attach T2 as the right child of the root. i T1 T2 i T1 T2 T1 T2 ≤ 3log(W/w(i)) + O(1) Amortize time: 3(log(s(T1)/s(i)) + 1 + s(T1) s(T1) + s(T2) log( )

56 Update operations on splay trees (cont)
split(i,T): Assume i  T Splay at i. Return the two trees formed by cutting off the right son of i i i T T2 T1 Amortized time = 3log(W/w(i)) + O(1)

57 Update operations on splay trees (cont)
split(i,T): What if i  T ? Splay at the successor or predecessor of i (i- or i+). Return the two trees formed by cutting off the right son of i or the left son of i i- i- T T2 T1 Amortized time = 3log(W/min{w(i-),w(i+)}) + O(1)

58 Update operations on splay trees (cont)
insert(i,T): Perform split(i,T) ==> T1,T2 Return the tree i T1 T2 W-w(i) 3log( ) Amortize time: + log(W/w(i)) + O(1) min{w(i-),w(i+)}

59 Update operations on splay trees (cont)
delete(i,T): Splay at i and then return the catenation of the left and right subtrees i T1 + T2 T1 T2 W-w(i) 3log( ) Amortize time: 3log(W/w(i)) + + O(1) w(i-)

60 Open problems Dynamic optimality conjecture:
Consider any sequence of successful accesses on an n-node search tree. Let A be any algorithm that carries out each access by traversing the path from the root to the node containing the accessed item, at the cost of one plus the depth of the node containing the item, and that between accesses perform rotations anywhere in the tree, at a cost of one per rotation. Then the total time to perform all these accesses by splaying is no more than O(n) plus a constant times the cost of algorithm A.

61 Open problems Dynamic finger conjecture (now theorem)
The total time to perform m successful accesses on an arbitrary n-node splay tree is O(m + n +  (log |ij+1 - ij| + 1)) where the jth access is to item ij m j=1 Very complicated proof showed up in SICOMP recently (Cole et al)

62 Tango trees (Demaine, Harmon, Iacono, Patrascu 2004)

63 Lower bound A reference tree

64 Lower bound A reference tree y

65 Left region of y y

66 Right region of y y

67 IB(σ,y) = #of alternations between accesses to the left region of y and accesses to the right region of y y

68 IB(σ) = yIB(σ,y) y

69 The lower bound (Wilber 89)
OPT(σ) ≥ ½ IB(σ) - n

70 Proof

71 Unique transition point
y x x z z

72 Transition point exists
y r x z l x x2 x1 z z2 z1

73 y z r x z x l x1 x2 z z2 z1

74 y l x z z2 r z z1 z x2 x x1

75 Transition point does not change if not touched
y l x z z2 r z z1 z x2 x x1

76 z is a trasition point for only one node
x z z2 r1 z1 y1 and y2 have different z’s if unrelated z x2 x x1

77 z is a trasition point for only one node
x z2 r1 If z is not in y2’s subtree we are ok z1 z x2 x x1

78 z is a trasition point for only one node
x z2 r1 Otherwise z is the LCA of everyone in y2’s subtree z1 z x2 x x1 So it’s the first among l2 and r2

79 OPT(σ) ≥ ½ IB(σ) - n (proof)
Sum, for every y, how many time the algorithm touched the transition point of y (the deeper of l and r) Let σy1, σy2, σy3, σy4, ……., σyp be the interleaving accesses through y We must touch l when we access σyj for odd j, and r for even j so you touch the transition point unless it switched, but to switch it you also have to access it

80 Tango trees A reference tree Each node has a preferred child y z x

81 Tango trees (cont) c d e f b a
y a b c d f c d e x z e f b a y z x A hierarchy of balanced binary trees each corresponds to a blue path

82 y 6 a 4 b c 3 6 d f c d e x z e f b a y z x Each node stores its depth in the blue path and the maximum depth in its subtree

83 Cut 7 6 5 a 4 2 b c 3 6 5 1 d f c d e x z e f b a y z x Nodes on the lower part are continuous in key space, can use maximum depth values to find the “interval” containing them

84 Split Split 7 6 (5,1) a 4 2 b c 3 6 5 1 d f c d e x z e f b a y z x

85 a 2 (5,1) b c 3 1 d 7 f c e b a y 4 6 6 5 z x d e x z f

86 need some differential encoding of the depths
2 (5,1) a b c 3 1 d 4 f c e b a y 1 3 3 2 z x d e x z f

87 Catenate (5,1) 2 a b c 3 1 d 4 f c e b a y 1 3 3 2 z x d e f z x

88 Catenate (5,1) 2 a b c 3 1 d f c e b a y 4 1 3 z x 3 2 d e f z x

89 Similarly can do join c b a d e f (5,1) 3 2 a b c 3 1 d f e y 4 1 x z

90 The algorithm y a b c d f c d e x z e f b a y z x Search, and then, bottom-up cut and join so that your tango tree corresponds to the blue edges in the reference tree

91 Analysis If k edges change from black to blue: Sum over m accesses
If m=Ω(n)


Download ppt "Splay trees (Sleator, Tarjan 1983)"

Similar presentations


Ads by Google