• Keine Ergebnisse gefunden

Geometric Spanners

N/A
N/A
Protected

Academic year: 2021

Aktie "Geometric Spanners"

Copied!
31
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

– 1 –

Geometric Spanners

S finite set of points in Rd

Geometric graph on S: edge-weighted graph vertex set S,

edges correspond to straight segments connecting points in S weight of an edge is its euclidean length

4 2

13 13

2

(2)

– 2 –

Geometric Spanners

S finite set in Rd “stretch factor” t > 1 t-spanner for S:

a geometric graph G on S so that for every p, q S you have dG(p, q) t · δ(p, q) dG() . . . shortest path distance in G

δ() . . . euclidean distance

(3)

– 3 –

Geometric Spanners

S finite set in Rd “stretch factor” t > 1 t-spanner for S:

a geometric graph G on S so that for every p, q S you have dG(p, q) t · δ(p, q) dG() . . . shortest path distance in G

δ() . . . euclidean distance Goal: Given S and t > 1

prove existence/find t-spanner G for S s.t.

G has few edges (O(n))

G is planar

G has small maximum degree (O(1))

G has small total edge weight (O(wt(M ST(S)))

Construction takes little time

(4)

– 4 –

Delaunay triangulations as spanners

Theorem: (Dobkin, Friedman, Supowit)

For S in the plane the Delaunay triangulation of S is a t-spanner for S with t ≤ (1 + √

5)π/2 ≈ 5.08

(5)

– 5 –

Delaunay triangulations as spanners

Theorem: (Dobkin, Friedman, Supowit)

For S in the plane the Delaunay triangulation of S is a t-spanner for S with t ≤ (1 + √

5)π/2 ≈ 5.08 Sketch of proof

(6)

– 6 –

Delaunay triangulations as spanners

Theorem: (Dobkin, Friedman, Supowit)

For S in the plane the Delaunay triangulation of S is a t-spanner for S with t ≤ (1 + √

5)π/2 ≈ 5.08 Sketch of proof

p q

(7)

– 7 –

Delaunay triangulations as spanners

p q

(8)

– 8 –

Delaunay triangulations as spanners

p q

(9)

– 9 –

Delaunay triangulations as spanners

p q

(10)

– 10 –

Delaunay triangulations as spanners

p q

(11)

– 11 –

Delaunay triangulations as spanners

p q

(12)

– 12 –

Delaunay triangulations as spanners

p q

(13)

– 13 –

Delaunay triangulations as spanners

p q

(14)

– 14 –

Delaunay triangulations as spanners

p q

general case, where path crosses connecting segment is similar but more complicated This method does not generalize to d > 2.

best proven stretch factor 1.998

Delaunay triangulations wirth respect to other metrics work as well or better

(15)

– 15 –

θ -graphs as geometric spanners

θ some angle, sufficiently small (e.g. less than π/3); φ = θ/2

Let U be a “small” set of directions, so that every possible direction has angle at most φ with some u U.

for point p and u U let Ru(p) be the ray in direction u starting at p for point p and u U let Su(p) = {q S \ {q} | (pq, u)~ φ}

for point p and u U let ku(p) be the point in Su(p) whose orthogonal projection onto ray Ru(p) is closest to p.

φ = π/8

φ φ

p

Ru(p)

Su(p) ku(p)

(16)

– 16 –

θ -graphs as geometric spanners

The θ-graph for S consists of the edges {p, ku(p)} | p S and u U

θ some angle, sufficiently small (e.g. less than π/3); φ = θ/2

Let U be a “small” set of directions, so that every possible direction has angle at most φ with some u U.

for point p and u U let Ru(p) be the ray in direction u starting at p for point p and u U let Su(p) = {q S \ {p} | (pq, u)~ φ}

for point p and u U let ku(p) be the point in Su(p) whose orthogonal projection onto ray Ru(p) is closest to p.

φ φ

p

Ru(p)

Su(p) ku(p)

(17)

– 17 –

θ -graphs as geometric spanners

Finding a short path from p to q in θ-graph:

p0 = p; i := 0 while pi 6= q do

let ui be such that q Sui(pi) pi+1 = kui(pi)

i := i + 1

(18)

– 18 –

θ -graphs as geometric spanners

Lemma: Let δi = δ(pi, pi+1) and let `i = δ(pi, q).

δi + `i+1 `i + 2δi sin φ

(19)

– 19 –

θ -graphs as geometric spanners

Lemma: Let δi = δ(pi, pi+1) and let `i = δ(pi, q).

δi + `i+1 `i + 2δi sin φ Corollary:

X

0≤i<m

δi δ(p, q) 1 2 sin φ

The θ-graph is a t-spanner with t 1−2 sin(θ/2)1 and d2π/θe · |S| edges.

(20)

– 20 –

Geometric spanners from WSPD

Well Separated Pair Decomposition for a set S of n points

(21)

– 21 –

Geometric spanners from WSPD

Well Separated Pair Decomposition for a set S of n points with parameter 1/ε

sequence of pairs of subsets of S: (Ai, Bi) with i = 1, . . . , s with 1. Ai ∩ Bi = ∅ for each i

2. for every pair p, q ∈ S there is exactly on pair (Ai, Bi) s.t. p ∈ Ai and q ∈ Bi (or vice versa)

3. for each i the sets Ai and Bi are (1/ε)-separated.

(22)

– 22 –

Geometric spanners from WSPD

Well Separated Pair Decomposition for a set S of n points with parameter 1/ε

sequence of pairs of subsets of S: (Ai, Bi) with i = 1, . . . , s with 1. Ai ∩ Bi = ∅ for each i

2. for every pair p, q ∈ S there is exactly on pair (Ai, Bi) s.t. p ∈ Ai and q ∈ Bi (or vice versa)

3. for each i the sets Ai and Bi are (1/ε)-separated.

the largest distance between points in the same set is at most ε time the smallest distance between points from different sets.

max(diam(Ai), diam(Bi)) ≤ ε · δ(Ai, Bi)

(23)

– 23 –

Geometric spanners from WSPD

the largest distance between points in the same set is at most ε time the smallest distance between points from different sets.

max(diam(Ai), diam(Bi)) ≤ ε · δ(Ai, Bi)

(24)

– 24 –

Geometric spanners from WSPD

Theorem: Given a set S of n points in Rd and a parameter ε > 0 via a

WSPD for S you can compute a (1 + ε)-spanner for S with O(n/εd) edges in time O(n log n + n/εd).

(25)

– 25 –

Geometric spanners from WSPD

Theorem: Given a set S of n points in Rd and a parameter ε > 0 via a

WSPD for S you can compute a (1 + ε)-spanner for S with O(n/εd) edges in time O(n log n + n/εd).

Sketch of proof:

let c ≥ 16 and δ = ε/c.

Compute a (1/δ)-WSPD for S and for every pair (u, v) in the decomposition take edge {repu, repv}

(26)

– 26 –

(27)

– 27 –

Computing a WSPD

1. Compute a quadtree (octtree) T for S (compressed) 2. Execute CompWSPD(root(T ),root(T ),T ), where

CompWSPD(u, v, T )

if ∆(u) < ∆(v) then exchange u and v if ∆(u) ≤ ε · δ(u, v) then return {{u, v}}

return S

w childof u CompWSPD(w, v, T )

(28)

– 28 –

(29)

– 29 –

(30)

– 30 –

(31)

– 31 –

Referenzen

ÄHNLICHE DOKUMENTE

Benötigt: £ jeweils im halben Klassensatz: M 1 talk &amp; swap sheet; M 4 feedback sheet £ jeweils im Klassensatz: M 2 Modelltext; M 3 listening grid4. £

Because dyslexics are reported to be deficient in categorizing speech- sounds (Mody et al., 1997; Adlard &amp; Hazan, 1998; Serniclaes et al., 2001) and distinguishing CV

In this pa- per, we discuss several ways of introducing nesting to PRPQ s, and show that they lead to increasingly expressive query languages: CN2RPQ s, which were stud- ied in

The events in Egypt that occurred after 3 July when the army deposed President Mohamed Morsi then crushed the Muslim Brotherhood’s counter demonstrations, resulting in hundreds

ZANU-PF has made it clear that economic empowerment via indigenising foreign-owned companies is its key policy plank in its campaign strategy for the next elections 1?. The MDC-T

We know roughly the total bits of information generated or put into the sys- tem each year and we have some idea of the number of recipients, but we do not know the distribution of

Having recognized this, we should, in principle, be able to &#34;starve&#34; an entire mode of organization (i.e., a style of problem solving) out of existence merely by reducing

The elderly’s perception of OHR-QoL is presented more frequent and worse in the cognitive impairment group (Figure 1.).The feeling of embarrassment due to the appearance of the