Low Crossing Number Spanning Trees

 In this post, we prove that for any set P of n points in the plane, there is a spanning tree for P such that any line in the plane intersects at most O(n) edges of the spanning tree. This result was first proved by Welzl [W'88] and later generalized by Chazelle and Welzl [CW'89]. Such low crossing number spanning trees has many applications in computational geometry, e.g., for simplex range searching problems. We will see how to prove this result in the plane. The proof of this post is from Welzl [W'05].

We start with several definitions. Let S be a set of points in the plane. 

Definition 1 (Spanning Trees). A spanning tree of S is a directed acyclic graph T=(S,E) where E is a collection of edges with endpoints in S

Definition 2 (Crossing numbers). Given a line l in the plane, the crossing number of l in T is defined to be the number of edges in E intersecting l.  The crossing number of a spanning tree T is defined to be the maximum crossing number of any line in the plane.

Definition 3 (Weighted Lines). A line in the plane is said to be weighted if it is associated with a weight. In this post, we will assume that all the weights are real-valued.

Definition 4 (Pseudodistance between two points). Given two points p,q in the plane, and let G be a collection of weighted lines in the plane. We define the pseudodistance between p,q in G, denoted by δG(p,q), to be the sum of weights of lines in G intersecting line segment pq.

We prove the following theorem.

Theorem 1 [W'88]. Every set S of n points in the plane has a spanning tree with crossing number O(n).

To prove the theorem, we use the following lemma.

Lemma 1. Let G be a collection of weighted lines in the plane. Let W be the total weight of all lines in G. Let S be a set of n points in the plane. There exist two points p,qS such that δG(p,q)2Wn.

Proof of Theorem 1. We show how to construct a low crossing number spanning tree. The construction consists of n1 steps. At each step, we add one edge into the tree and remove one of the points. Let Ti denote the collection of all spanning tree edges we have discovered after step i. We use Si to denote the set of remaining points after step i. Initially, T0= and S0=S

To bound the crossing number of edges, we need to consider all possible lines in the plane. The first idea is to consider a finite collection G of test lines such that for any line l in the plane, either the line is in G or there is a line lG such that the crossing numbers of l and l are the same. It is not hard to see that such a set G exists and |G|=(n2) (the VC-dimension of a halfspace in the plane is 3).

To decide which edge to add to Ti at step i, we first update the weights of each line in G. Given a line lG, we update its weight to be (1+μ)ci1 where ci1 is the number of edges it crosses in Ti1 and μ is a parameter we will set later. After updating the weights, we find a pair of points pi,qiSi1 such that δG(pi,qi)2Wi1n(i1), where Wi1 is the total weights after updating. By Lemma 1, such a pair exists. Then we add piqi to Ti and remove pi from Si1 to get Si. It is not hard to show that after n1 iterations, we get a spanning tree. We now analyze the crossing number.

The key to the analysis is to bound the total weight Wi after step i. Observe that to update Wi1, we increase the weights of at most 2Wi1ni1  lines in G by a factor of 1+μ, so

Wi2Wi1Wi1n(i1)Wi1(1+μ)+(12Wi1Wi1n(i1))Wi1=Wi1(1+2μn(i1))|G|j=0i1(1+2μnj).

After n1 steps, the total weight becomes

Wn1|G|j=0n2(1+2μnj)=|G|j=2n(1+2μj)<|G|exp(j=1n2μj)exp(4μn+2lnn),

where the last inequality follows from |G|n2.

On the other hand, by definition,

Wn1=lG(1+μ)cl,

where cl is the crossing number of line l in spanning tree Tn1. Thus,

lG(1+μ)clexp(4μn+2lnn).

We pick μ=lnn2n, which gives us

lG(1+lnn2n)clexp(4lnn).

Thus for any lG, we must have

(1+lnn2n)clexp(4lnn)clln(1+lnn2n)4lnncllnn2n4lnncl8n,

where the second last implication follows from ex(1+x).

Remark. The idea behind the construction is called iterative reweighting. This idea has also been used by Matoušek [M'92] to prove the partition theorem.


References:

[CW'89] Chazelle, Bernard, and Emo Welzl. "Quasi-optimal range searching in spaces of finite VC-dimension." Discrete & Computational Geometry 4 (1989): 467-489.

[M'92] Matoušek, Jiří. "Efficient partition trees." Proceedings of the seventh annual symposium on Computational geometry. 1991.

[W'88] Welzl, Emo. "Partition trees for triangle counting and other range searching problems." Proceedings of the fourth annual symposium on Computational geometry. 1988.

[W'05] Welzl, Emo. "On spanning trees with low crossing numbers." Data structures and efficient algorithms: Final Report on the DFG Special Joint Initiative (2005): 233-249


Comments

Popular Posts