design patterns for self-balancing trees dung “zung” nguyen stephen wong rice university

20
Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Upload: jordan-stone

Post on 17-Dec-2015

212 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Design Patterns for Self-Balancing Trees

Dung “Zung” Nguyen

Stephen WongRice University

Page 2: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Resources

http://www.owlnet.rice.edu/~swong/TeachJava

http://www.exciton.cs.rice.edu/research/OOPSLA02

(http://www.owlnet.rice.edu/~swong/TeachJava/NTree/presentation/NTree.ppt)

Page 3: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Motivations

Classic self-balancing tree structure– Generalizable to B-trees.– Difficult and complex. Who shows real

code? What’s the proper abstraction?– Should be able to extend prior work on

decoupling algorithms from data structures.

Consider 2-3-4 Trees….

Page 4: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

A 2-3-4 Tree is…

A

A B

A B C

Empty

Non-Empty, in 3 possible states:

2-State: 1 data element + 2 sub-trees.

4-State: 3 data elements + 4 sub-trees.

3-State: 2 data elements + 3 sub-trees.

or…

Page 5: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Variant vs. Invariant Operations

Self-balancing insertion is not an intrinsic (invariant) operation of a tree.

What are the invariant operations?– Gettors & Constructors.– Constructive and Destructive operations:

Constructive: Splice a tree into another.Destructive: Split a tree into a 2-state.

Page 6: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

B

Splittin’ and Splicin’

A CA B C

B

A B C

A C

B

Split Up:Splice:

Page 7: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Structural Operationst1

-10 0 10-20 20

t1.splitUpAt(1)

-10

0 10-20 20

t2

β γα

t1.spliceAt(1, t2)

-10 0 10-20 20β γα

t1.splitDownAt(1)

-10

0 10-20 20

Page 8: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Con/De-structiont1

10

t2

t1.splitUpAt(0)

10

t1.splitDownAt(0)

t2.spliceAt(0, t1)

10

Page 9: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Visitor Design Pattern

Invariant: Hosti calls casei of the visitor.

AHostexecute(v)

AVisitor+case1()+case2()+case3()

Host1 Host2 Host3

VisitorA VisitorB

Fixed # of methods fixed # of hosts

Page 10: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Generalized Visitors

Invariant: Hosti calls caseAt(i) of the visitor.

AHostexecute(v) AVisitor

+caseAt(int i)Host1 Host2 Host3

VisitorA VisitorB

Page 11: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

TreeN and Algorithms

Page 12: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

toString() Algorithmpublic class ToStringAlgo implements ITreeNAlgo { // Constructors omitted

public Object caseAt(int idx, TreeN host, Object key) { switch(idx) { case 0: { return "[ ]"; } default: { String sData= "", sTrees=""; for(int i = 0;i<idx;i++) {

sData += host.getDat(i)+" "; sTrees += host.getChild(i).execute(toStringHelp,"| ")+"\n";

} sTrees += host.getChild(idx).execute(toStringHelp," ").toString(); return sData +"\n"+sTrees; } } } ITreeNAlgo toStringHelp = …see next slide….}

Empty Tree

Non-Empty Tree

“Prefix” data

Page 13: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

ToString() Helperprivate final static ITreeNAlgo toStringHelp = new ITreeNAlgo() { public Object caseAt(int idx, TreeN host, Object prefix) { switch(idx) { case 0: { return "|_[ ]"; } default: { String sData= "", sTrees=""; for(int i = 0;i<idx;i++) { sData += host.getDat(i)+" "; sTrees += prefix + (String) host.getChild(i).execute(this, prefix+"| ")+"\n"; } sTrees += prefix + host.getChild(idx).execute(this, prefix+" " ).toString(); return "|_ "+sData +"\n"+sTrees; } } }};

Empty Tree

Non-Empty Tree

“Prefix” data

Page 14: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Vertical Data Transport

-10 0 10-20 20

5

-10 0 10-20 20

5

-10 0 10-20 205

Split up Splice

Collapse/Splice

Split-down

No net height change except at root and leaves!

Page 15: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Command Design Pattern

ICommand+Object apply(Object inp)

Command1 Command2 Command3

Performs a task.

No specified semantic!

Well-defined, but unrelated semantics.

Invoker invokes

Page 16: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Insertion Heuristics Insertion must take place at the leaf. Tree must grow only at the root.

Must transport data from the leaves to the root

without affecting the height balance.

Page 17: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Insertion Algorithm Find insertion point at the leaf and splice new

data in. Use Split-and-Apply visitor to transport excess

data upwards.– Visitor passed as parameter to recursive call.– Non-root: split-and-splice– Root node: split-and-no-op will cause entire

tree to grow in height.– Abstract the splice/no-op as a command

passed to the visitor!

Page 18: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Deletion Heuristics

Deletion only well-defined at leaf. Data might exist anywhere in the tree. Tree can only shorten at root.

Must transport data from the root to the leaves and

from the leaves to the rootwithout affecting the height balance.

Push “candidate” data down from the root to the leaves.

Bubble “excess” data back to the root.

Page 19: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Deletion Algorithm Identify candidate data – split down at candidate and collapse with

children.– If root is a 2-node, then tree will shorten.

Data to delete will appear as 2-node below leaves.

Use Split-and-Apply to transport excess data upwards.

Page 20: Design Patterns for Self-Balancing Trees Dung “Zung” Nguyen Stephen Wong Rice University

Conclusions Proper abstraction leads to

– Decoupling– Simplicity– Flexibility & extensibility

Generalized Visitors open up new possibilities. Self-balancing trees teach

– Abstract decomposition– Design patterns– Component-frameworks– Lambda calculus– Proof-of-correctness & complexity analysis