径宽
图论中,图G的径分解(path decomposition)是G的“加粗”路径图表示,[1]G的径宽(pathwidth)是衡量形成G的路径被加粗的程度。更正式地说,径分解是G的顶点子集序列,使每条边的端点出现在某一子集中,并使每个顶点都出现在子集连续子序列中,[2]径宽等于这样的分解中最大集的大小减一。 径宽也叫做区间厚度(interval thickness,等于G的区间父图中的最大团大小减一)、顶点分隔数(vertex separation number)或结点搜索数(node searching number)。[3]
径宽与径分解同树宽、树分解关系密切,在图子式理论中起关键作用:在图子式下封闭、不含所有森林的图族可描述为径宽有界,[2]子式闭图族的一般结构理论中出现的“涡”(vortex)的径宽也有界。[4]径宽与径宽有界图在超大规模集成电路设计、图绘制、计算语言学等领域也有应用。
计算任意图的径宽、甚至精确近似径宽都是NP困难的。[5][6]不过,这问题是固定参数可解的:测试图的径宽是否为k,耗时与图的大小呈线性关系,而与k呈上指数关系。[7]另外,对树之类的特殊图,径宽可在多项式时间内算得,而不依赖于k。[8][9] 对图的径分解使用动态规划,可以将图算法中很多问题在径宽有界图上高效解决。[10]径分解也可测量树宽有界图上动态规划算法的空间复杂度。[11]
定义
编辑Neil Robertson and Paul Seymour (1983)在图子式系列论文的第一篇中,将图G的径分解定义为G的顶点子集 序列,满足两条属性:
- 对G中每条边,存在i使边的两端点都属于子集 ;
第二条性质等价于要求包含任意特定顶点的子集构成整个序列的连续子列。用系列论文后期的话来说,径分解是树分解 ,其中分解的底树T是路径图。 径分解的宽度与树分解类似,是 ,G的径宽是G的径分解的最小宽度。在径宽的大多数应用中, 的大小减不减一没什么差别,主要是为了使路径图的径宽等于1。
其他特征
编辑如Bodlaender (1998)所描述的,径宽可用许多等价方法表征。
粘合序列
编辑径分解可表述为图 的序列,找到来自序列中连续图的顶点对,并将图粘合在一起,所有粘合的结果就是G。在径分解的第一个定义中,图 可看作是集合 的诱导子图,连续(successive)诱导子图中的两顶点被G中相同顶点诱导时,就会被粘在一起;反之,可以把集合 恢复为图 的顶点集。则径分解的宽度比某一图 的最大顶点数少1。[2]
区间厚度
编辑任意图G的径宽等于含G(以G为子图)的区间图的最小团数减一。[12]即,对G的每种径分解,都能找到G的区间子图;对G的每个区间父图,都能找到G的径分解,使分解的宽度比区间图团数小1。
假设给出了G的径分解。则可将分解的结点表为直线上的点(按路径顺序),并将每个顶点v表示为以这些点为端点的闭区间。这样,包含v的径分解结点就对应v在区间中的代表点。G顶点形成的区间交图是包含G的区间图,其最大团由包含代表点的区间集给出,大小比G的径宽大1。
设G是某区间图的子图,团数 ,则G有宽p的径分解,其结点由区间图的最大团给出。例如,图中的区间图及其区间表示的径分解有5个结点,分别对应5个最大团ABC、ACD、CDE、CDF、FG;最大团大小为3,这径分解的宽度为2。 径宽与区间厚度之间的等价关系同树宽与弦图(给定图是弦图的子图)的最小团数(减一)的等价关系非常相似。区间图是弦图的特例,弦图可表为共同树的子树的交图,这类似于区间图是路径子径的交图。
顶点分隔数
编辑设图G的顶点是线性有序的。则,G的顶点分隔数是满足下列条件的最小数s:对顶点v,最多s个顶点在排序中先于v,但有v或更靠后的顶点相邻。 G的顶点分隔数是G的任意线性排序的最小顶点分隔数。顶点分隔数由Ellis, Sudborough & Turner (1983)定义,等于G的径宽。[13] 这源于前述的与区间图团数的等价关系:若G是区间图I的子图,并以所有区间端点都分离的方式表示(如图所示),则I的区间左端点排序的顶点分隔数比I的团数小1。反过来,从G的线性排序可推导出一种区间表示:顶点v的区间左端点是其在排序中的位置,右端点是v在排序中最后一个邻居的位置。
结点搜索数
编辑图上的结点搜索策略是追逃对策的一种形式,当中一组搜索者合作追踪藏在图中的逃犯。搜索者被置于图的顶点上,逃犯可能在任意边上,位置与移动对搜索者不可见。每个回合中,搜索者的部分或全部可从顶点移动到另一顶点(任意移动,不必沿边),逃犯可以沿不经过搜索者顶点的任意路径移动。逃犯所在边的两端点都被搜索者占据时,就被抓获。图的结点搜索数是必然能抓到逃犯的最少搜索者数。如Kirousis & Papadimitriou (1985)所示,图的结点搜索数等于其区间厚度。搜索者的最优策略是不断移动搜索者,使他们在连续回合中形成具有最小顶点分隔数的线性排序的分隔集。
界
编辑径宽为k的n顶点图至多有 条边,是最大k径宽图(即径宽为k、无论怎样添加边都必改变径宽的图)的边数。径宽为k的最大图要么是k径图要么是k毛虫图,它们是两种特殊的k树。k树是恰有 个最大团(含 个顶点)的弦图;在本身不是 团的k树中,每个最大团要么将图分隔成多个部分,要么包含单个叶顶点(只属于一个最大团的顶点)。k径图是至少有两叶的k树,k毛虫图是可分割维k径与一组k叶的k树,其中每片叶还与k径中的独立k团相邻。径宽为1的最大图是毛虫树。[14]
由于径分解是树分解的特例,径宽不小于树宽,且不大于割宽,即在图顶点的最优线性排列中,前后顶点组之间割边的最小数。这是因为,顶点分隔数即前后顶点组的邻接数不大于割边数。[15]出于类似原因,割宽不大于径宽乘顶点的最大度。[16]
任意n顶点森林都有径宽 。[17]例如,对一个森林,总能找到恒定多的顶点,使得去掉它们后形成至多有 个顶点的两片子森林。如此递归地分隔子森林,将分隔顶点置于两者之间,形成的线性排列具有对数顶点搜索数。此技术用于树分解时,可知,若n顶点图G的树宽为t,则G的径宽是 。[18]由于外平面图、系列并行图、哈林图的树宽都有界,它们的径宽最多为对数的。
此外,径宽还通过线图,同团宽与割宽有关系。G的边在其线图 中都有对应的顶点,当G中相应的两边有共同端点时, 中的两顶点就是相邻的。当且仅当图族的线图的线性团宽(用邻接1个新顶点的操作取代了团宽的不交并操作)有界,图族的径宽有界。[19]若某3及以上个顶点的连通图的最大度为3,则其割宽等于线图的顶点分隔数。[20]
平面图的径宽最多与顶点数的平方根成正比。[21]找到具有这种宽度的径分解,一种方法是(与上述森林的对数宽径分解类似)用平面分隔定理找到 个顶点的集合,其将图分隔为至多有 个顶点的两个子图,如此递归地分隔子图,最后将两子图的递归径分解连接起来。同样的技术也适用于类似分离器定理成立的任何一类图。[22]与平面图一样,任何固定的子式闭图族中的图都有大小为 的分隔子,[23]因此此类图族中图的径宽也是 。对某类平面图,图的径宽与其对偶图的径宽必须在一常数因子范围内,对于双连通外平面图[24]与多面体图[25],这种形式的边界是已知的。2连通平面图的对偶图的径宽小于线图的径宽。[26]至于在其他情形下,平面图径宽与对偶图径宽是否总相差某常数因子,仍是未知的。
在某些类的图中,径宽与树宽总相等。已证明的有余图、[27]置换图、[28]可比图之补、[29]区间序的可比图。[30]
在立方图中,或更广义地在任何最大顶点度为3的图中,径宽不大于 ,其中n是顶点数。存在径宽为 的立方图,但如何缩小这下界与上界 之间的差距,目前还不得而知。[31]
计算径分解
编辑确定给定图的径宽是否大于k的问题是NP完全的(k也是输入)。[5]计算任意n顶点图径宽的最坏情形的最优时间边界为 ,c是常数。[32]不过,已经有几种算法可在径宽较小、输入图类别有限或近似的情形下更高效地计算径分解。
固定参数可解
编辑径宽是固定参数可解的:对任意常数k,都可测试径宽是否大于k,若不大于k,则在线性时间内找到宽k的径分解。[7]一般来说,这类算法分两阶段运行。第一阶段,假设图的径宽为k,以找到并非最优的径分解或树分解,宽度可作为k的函数而变为约束。第二阶段,对这分解运用动态规划算法,以找到最优分解。然而,已知的这类算法的时间界限是 的指数级,除了最小的k外,都是不切实际的。[33]对于 的情形,de Fluiter (1997)给出了基于2径宽图的结构分解的精确限行时间算法。
特殊图类
编辑Bodlaender (1994)调查了计算各种特殊图类的径宽的复杂性。若图G是有界度图、[34]平面图、[34]有界度平面图、[34]弦图、[35]弦多米诺、[36]可比图之补、[29]二分距离遗传图[37],确定图G的径宽是否最大是k的问题仍是NP完全的。对于包含二分距离遗传图的图族(二分图、弦二分图、距离遗传图、循环图之类),也是NP完全的。[37]
不过,对于树与森林,径宽可在线性时间内算得。[9]对树宽有界图族(系列并行图、外平面图、哈林图)[7]、裂图[38]、弦图之补[39]、置换图[28]、余图[27]、圆弧图[40]、区间序的可比图[30]、区间图,也可在多项式时间内计算出来。这种情形下,径宽比覆盖图的区间表示中所有点的最大区间数小1。
近似算法
编辑将图的径宽近似到加常数范围内,是NP难的。[6] 已知近似率最佳的多项式时间近似算法是 。[41] 关于计算径宽的早期近似算法,见Bodlaender et al. (1992)与Guha (2000);关于受限图类的近似计算,见Kloks & Bodlaender (1992)。
图子式
编辑图G的子式是由G通过收缩边、移除边、移除顶点得到的另一张图。图子式有深奥的理论,其中几个重要结果涉及径宽。
排除森林
编辑若图族F对取子式封闭(即F成员的子式还在F中),则由罗伯森–西摩定理,F的特征是在禁子式有限集X中没有任何子式。[42]例如,瓦格纳定理指出,平面图是既没有完整图 也没有完全二分图 作为子式的图。很多时候,F的性质与X的性质密切相关,此类的第一个结果由Robertson & Seymour (1983)提出,[2]将有界径宽与禁子式族中森林的存在联系起来。具体来说,若存在常数p使F中图的径宽不大于p,则称图族F具有有界径宽。那么,当且仅当F的禁子式集X至少包括一个森林时,子式闭族F具有有界的径宽。
从一个方向来看,这结果很容易证明:若X不含森林,则“无X子式图”的径宽便无界。因为这时,无X子式图将包含所有森林,特别是包括完美二叉树。而一棵 层的完美二叉树的径宽为k,所以这时无X子式图的径宽无解。从另一方向看,若X包含n顶点森林,则无X子式图的径宽不大于 。[43]
径宽有界的障碍
编辑径宽不大于p的性质本身对取子式封闭:若G的径分解宽度不大于p,则从G中删去任何边,同一径分解仍有效,且可以从G及其径分解中删去任意顶点而不增加宽度。同样,通过合并表示收缩后边的两端点的子径,也可在收缩边时不增加分解宽度。因此,径宽至多为p的图可用排除子式的集合 描述。[42][44]
虽然 必然包括森林,但并不是说 中的所有图都是森林:例如, 包含2张图,一个7顶点树与三角 。而 中的树集可以精确描述:它们是 中三棵树通过边,连接新的根顶点与3棵小树中任意顶点而形成的树。例如, 中的7顶点树就是这样由 中的2顶点树(一条边)组成的。基于这种构造,可以证明 中的禁子式数至少为 。[44]已计算出2径宽图的完备禁子式集 ,其中包含110个图。[45]
结构理论
编辑子式闭图族的图结构定理指出,对任意图族F,其中的图可分解为能嵌入到亏格有界曲面上的图的团和,且团和的每个分量都有有界多的顶点(apex)与涡(vortex)。这里的顶点可能与其组分中任何顶点相邻,涡是径宽有界图,粘合到某组分的亏格有界嵌入的面上。涡所嵌入面周围的顶点的循环排序必须与涡的径分解相容,即,打破循环、形成线性排序必然产生顶点分隔数有界的排序。[4]这一理论中,径宽与任意子式闭图族密切相关,具有重要的算法应用。[46]
应用
编辑超大规模集成电路
编辑超大规模集成电路设计中,顶点分隔问题最初是将电路分为子系统的方法,子系统边界有少量元件。[34]
Ohtsuki et al. (1979)使用区间厚度模拟VLSI一维布局所需的轨道数,此布局由网络系统相互连接的模块组成。在他们的模型中,顶点代表网,若两网都连接到同一模块,就将两顶点由边相连;也就是说,若将模块与网视作超图的结点与超边,则由它们形成的图就是超图的线图。这超图的区间表示与着色描述了沿水平轨道(一种颜色对应一条轨道)系统的网的排列,使模块可沿轨道以线性顺序排列,并连接到相应的网。区间图都是完美图[47],表明这类最佳排列中,所需颜色数等于网图的区间完备化的团数。
门矩阵布局[48]是一种用于布尔逻辑电路的CMOS VLSI布局。当中,信号沿“线”(垂直线段)传播,而电路的每个门则由沿水平线段的一系列器件特征构成。因此,代表门的水平线段须与代表门输入输出的线路的垂直线段交叉。与Ohtsuki et al. (1979)的布局类似,通过计算以线路为顶点,以共享同一门的线对为边的图的径宽,可以找到使排列线路的垂直轨道数最小的布局。[49]这种算法方法也可为可编程逻辑阵列的折叠问题建模。[50]
图绘制
编辑径宽在图绘制中有多个应用:
- 给定交叉数的最小图的径宽受交叉数函数的约束。[51]
- 树的顶点可画在多少条平行线上而边不交(根据对相邻顶点在线序列上摆放方式的各种自然限制),与树的径宽成正比。[52]
- 图G的k交叉h层绘图是将G的顶点放置在h条水平线上,边在其间以单调多边形路径排列,使得最多有k处交叉。具有这种绘制的图的径宽由h与k的函数约束。于是,h、k为常值时,可在线性时间内确定图是都具有k交叉h层绘制。[53]
- n顶点、径宽为p的图可嵌入3维格 ,使得边(表为格点间的直线段)不交。于是,径宽有界图具有此种线性体积嵌入。[54]
编译器设计
编辑高级语言的编译过程中,径宽见于重排直线代码序列(即无控制流分支或循环的代码)问题,使代码算得的所有值都可放在寄存器中,而不必溢出到主内存中。这种应用中,我们将待编译代码表为有向无环图,其中结点是代码的输入输出值。这个DAG中,结点x到结点y的边表示x值是操作了y的输入之一。此DAG的顶点的拓扑排序表示代码的有效重排,在给定排序中评估代码所需的寄存器数由排序的顶点分隔数给出。[55]
对表示寄存器数的任意定值w,可在限行时间内确定一段直线代码能否重排,以便用不多于w个寄存器求值。若拓扑排序的顶点分隔数最多为w,则所有排序中的最小顶点分隔也不会更大,于是忽略DAG方向形成的无向图的径宽不大于w。可用已知的固定参数可解算法计算径宽,若是,则可在假设w为常数的线性时间内找到无向图的径分解。找到径分解,就可用动态规划,在线性时间内找到宽w的拓扑排序。[55]
语言学
编辑Kornai & Tuza (1992)描述了径宽在自然语言处理中的应用。句子被建模为图,顶点表示词,边表示词之间的关系。例如,若形容词修饰了名词,则图中这两个词之间就会有一条边。Kornai和Tuza认为,由于人类的短时记忆能力有限,[56]这种图的径宽一定有界(更具体地说,他们认为是6),否则人类将无法正确解析语言。
指数算法
编辑图算法中的很多问题都可通过对径分解进行动态规划,在径宽较小的图上高效解决。[10]例如,若给定n顶点图G的顶点的线性排序,就有可能在 的时间内找到G的最大独立集。[31]在径宽有界图上,这种方法会产生以径宽为参数的固定参数可解算法。[49]这种结果在文献中不常见,因为已经包含在以树宽为参数的类似算法;然而,即使在基于树宽的动态规划算法中,径宽也会出现衡量算法空间复杂度的过程中。[11]
同样的动态规划方法也可用于径宽无界图,产生以指数时间解决无参图问题的算法。例如,将这种方法与立方图径宽为 的事实相结合,可以发现在立方图中,最大支配集的构造耗时 ,比以往方法更快。[31]类似方法还可改进立方图中最大割与最小支配集问题的指数时间算法,[31]及其他一些NP难优化问题的指数时间算法。[57]
另见
编辑注释
编辑- ^ Diestel & Kühn (2005).
- ^ 2.0 2.1 2.2 2.3 Robertson & Seymour (1983).
- ^ Bodlaender (1998).
- ^ 4.0 4.1 Robertson & Seymour (2003).
- ^ 5.0 5.1 Kashiwabara & Fujisawa (1979); Ohtsuki et al. (1979); Lengauer (1981); Arnborg, Corneil & Proskurowski (1987).
- ^ 6.0 6.1 Bodlaender et al. (1992).
- ^ 7.0 7.1 7.2 Bodlaender (1996); Bodlaender & Kloks (1996)
- ^ Bodlaender (1994).
- ^ 9.0 9.1 Möhring (1990); Scheffler (1990); Ellis, Sudborough & Turner (1994); Peng et al. (1998); Skodinis (2000); Skodinis (2003); Coudert, Huc & Mazauric (2012).
- ^ 10.0 10.1 Arnborg (1985).
- ^ 11.0 11.1 Aspvall, Proskurowski & Telle (2000).
- ^ Bodlaender (1998), Theorem 29, p. 13.
- ^ Kinnersley (1992); Bodlaender (1998), Theorem 51.
- ^ Proskurowski & Telle (1999).
- ^ Korach & Solel (1993), Lemma 3 p.99; Bodlaender (1998), Theorem 47, p. 24.
- ^ Korach & Solel (1993), Lemma 1, p. 99; Bodlaender (1998), Theorem 49, p. 24.
- ^ Korach & Solel (1993), Theorem 5, p. 99; Bodlaender (1998), Theorem 66, p. 30. Scheffler (1992)为n顶点森林的径宽提供了更紧的上界: 。
- ^ Korach & Solel (1993), Theorem 6, p. 100; Bodlaender (1998), Corollary 24, p.10.
- ^ Gurski & Wanke (2007).
- ^ Golovach (1993).
- ^ Bodlaender (1998), Corollary 23, p. 10.
- ^ Bodlaender (1998), Theorem 20, p. 9.
- ^ Alon, Seymour & Thomas (1990).
- ^ Bodlaender & Fomin (2002); Coudert, Huc & Sereni (2007).
- ^ Fomin & Thilikos (2007); Amini, Huc & Pérennes (2009).
- ^ Fomin (2003).
- ^ 27.0 27.1 Bodlaender & Möhring (1990).
- ^ 28.0 28.1 Bodlaender, Kloks & Kratsch (1993).
- ^ 29.0 29.1 Habib & Möhring (1994).
- ^ 30.0 30.1 Garbe (1995).
- ^ 31.0 31.1 31.2 31.3 Fomin & Høie (2006).
- ^ Fomin et al. (2008).
- ^ Downey & Fellows (1999), p.12.
- ^ 34.0 34.1 34.2 34.3 Monien & Sudborough (1988).
- ^ Gustedt (1993).
- ^ Kloks, Kratsch & Müller (1995). 弦多米诺是顶点都属于至多2个最大团的弦图。
- ^ 37.0 37.1 Kloks et al. (1993).
- ^ Kloks & Bodlaender (1992); Gustedt (1993).
- ^ Garbe (1995)将此成果归功于Ton Kloks的博士论文(1993);Garbe对区间序的可比图的多项式时间算法推广了结果,而弦图属于此类可比图。
- ^ Suchan & Todinca (2007).
- ^ Feige, Hajiaghayi & Lee (2005).
- ^ 42.0 42.1 Robertson & Seymour (2004).
- ^ Bienstock et al. (1991); Diestel (1995); Cattell, Dinneen & Fellows (1996).
- ^ 44.0 44.1 Kinnersley (1992); Takahashi, Ueno & Kajitani (1994); Bodlaender (1998), p. 8.
- ^ Kinnersley & Langston (1994).
- ^ Demaine, Hajiaghayi & Kawarabayashi (2005).
- ^ Berge (1967).
- ^ Lopez & Law (1980).
- ^ 49.0 49.1 Fellows & Langston (1989).
- ^ Möhring (1990); Ferreira & Song (1992).
- ^ Hliněny (2003).
- ^ Suderman (2004).
- ^ Dujmović et al. (2008).
- ^ Dujmović, Morin & Wood (2003).
- ^ 55.0 55.1 Bodlaender, Gustedt & Telle (1998).
- ^ Miller (1956).
- ^ Kneis et al. (2005); Björklund & Husfeldt (2008).
参考文献
编辑- Alon, Noga; Seymour, Paul; Thomas, Robin, A separator theorem for graphs with an excluded minor and its applications, Proc. 22nd ACM Symp. on Theory of Computing (STOC 1990): 293–299, 1990, ISBN 0897913612, S2CID 17521329, doi:10.1145/100216.100254 .
- Amini, Omid; Huc, Florian; Pérennes, Stéphane, On the path-width of planar graphs, SIAM Journal on Discrete Mathematics, 2009, 23 (3): 1311–1316, doi:10.1137/060670146.
- Arnborg, Stefan, Efficient algorithms for combinatorial problems on graphs with bounded decomposability – A survey, BIT, 1985, 25 (1): 2–23, S2CID 122263659, doi:10.1007/BF01934985.
- Arnborg, Stefan; Corneil, Derek G.; Proskurowski, Andrzej, Complexity of finding embeddings in a k-tree, SIAM Journal on Algebraic and Discrete Methods, 1987, 8 (2): 277–284, doi:10.1137/0608024.
- Aspvall, Bengt; Proskurowski, Andrzej; Telle, Jan Arne, Memory requirements for table computations in partial k-tree algorithms, Algorithmica, 2000, 27 (3): 382–394, S2CID 9690525, doi:10.1007/s004530010025.
- Berge, Claude, Some classes of perfect graphs, Graph Theory and Theoretical Physics, New York: Academic Press: 155–165, 1967.
- Bienstock, Dan; Robertson, Neil; Seymour, Paul; Thomas, Robin, Quickly excluding a forest, Journal of Combinatorial Theory, Series B, 1991, 52 (2): 274–283, doi:10.1016/0095-8956(91)90068-U .
- Björklund, Andreas; Husfeldt, Thore, Exact algorithms for exact satisfiability and number of perfect matchings, Algorithmica, 2008, 52 (2): 226–249, S2CID 37693881, doi:10.1007/s00453-007-9149-8.
- Bodlaender, Hans L., A tourist guide through treewidth, Dassow, Jürgen; Kelemenová, Alisa (编), Developments in Theoretical Computer Science (Proc. 7th International Meeting of Young Computer Scientists, Smolenice, 16–20 November 1992), Topics in Computer Mathematics 6, Gordon and Breach: 1–20, 1994.
- Bodlaender, Hans L. A tourist guide through treewidth. Acta Cybernetica. 1994a, 11: 1–2.
- Bodlaender, Hans L., A linear-time algorithm for finding tree-decompositions of small treewidth, SIAM Journal on Computing, 1996, 25 (6): 1305–1317, doi:10.1137/S0097539793251219, hdl:1874/16670 .
- Bodlaender, Hans L., A partial k-arboretum of graphs with bounded treewidth, Theoretical Computer Science, 1998, 209 (1–2): 1–45, doi:10.1016/S0304-3975(97)00228-4 .
- Bodlaender, Hans L.; Fomin, Fedor V., Approximation of pathwidth of outerplanar graphs, Journal of Algorithms, 2002, 43 (2): 190–200, doi:10.1016/S0196-6774(02)00001-9.
- Bodlaender, Hans L.; Gilbert, John R.; Hafsteinsson, Hjálmtýr; Kloks, Ton, Approximating treewidth, pathwidth, and minimum elimination tree height, Graph-Theoretic Concepts in Computer Science, Lecture Notes in Computer Science 570: 1–12, 1992, ISBN 978-3-540-55121-8, doi:10.1007/3-540-55121-2_1, hdl:1874/17927 .
- Bodlaender, Hans L.; Gustedt, Jens; Telle, Jan Arne, Linear-time register allocation for a fixed number of registers, Proc. 9th ACM–SIAM Symposium on Discrete Algorithms (SODA '98) (PDF): 574–583, 1998 [2024-01-31], (原始内容存档 (PDF)于2023-01-30).
- Bodlaender, Hans L.; Kloks, Ton, Efficient and constructive algorithms for the pathwidth and treewidth of graphs, Journal of Algorithms, 1996, 21 (2): 358–402, doi:10.1006/jagm.1996.0049, hdl:1874/16538 .
- Bodlaender, Hans L.; Kloks, Ton; Kratsch, Dieter, Treewidth and pathwidth of permutation graphs, Proc. 20th International Colloquium on Automata, Languages and Programming (ICALP 1993), Lecture Notes in Computer Science 700, Springer-Verlag: 114–125, 1993, ISBN 978-3-540-56939-8, doi:10.1007/3-540-56939-1_66, hdl:1874/16657 .
- Bodlaender, Hans L.; Möhring, Rolf H., The pathwidth and treewidth of cographs, Proc. 2nd Scandinavian Workshop on Algorithm Theory, Lecture Notes in Computer Science 447, Springer-Verlag: 301–309, 1990, ISBN 978-3-540-52846-3, doi:10.1007/3-540-52846-6_99, hdl:1874/16625 .
- Cattell, Kevin; Dinneen, Michael J.; Fellows, Michael R., A simple linear-time algorithm for finding path-decompositions of small width, Information Processing Letters, 1996, 57 (4): 197–203, S2CID 2442557, arXiv:math/9410211 , doi:10.1016/0020-0190(95)00190-5.
- Coudert, David; Huc, Florian; Mazauric, Dorian, A Distributed Algorithm for Computing the Node Search Number in Trees (PDF), Algorithmica, 2012, 63 (1): 158–190 [2024-01-31], doi:10.1007/s00453-011-9524-3, (原始内容存档 (PDF)于2022-01-03).
- Coudert, David; Huc, Florian; Sereni, Jean-Sébastien, Pathwidth of outerplanar graphs (PDF), Journal of Graph Theory, 2007, 55 (1): 27–41 [2024-01-31], doi:10.1002/jgt.20218, (原始内容存档 (PDF)于2022-01-03).
- Diestel, Reinhard, Graph Minors I: a short proof of the path-width theorem, Combinatorics, Probability and Computing, 1995, 4 (1): 27–30, doi:10.1017/S0963548300001450.
- Diestel, Reinhard; Kühn, Daniela, Graph minor hierarchies, Discrete Applied Mathematics, 2005, 145 (2): 167–182, doi:10.1016/j.dam.2004.01.010 .
- Demaine, Erik D.; Hajiaghayi, MohammadTaghi; Kawarabayashi, Ken-ichi, Algorithmic graph minor theory: decomposition, approximation, and coloring, Proc. 46th IEEE Symposium on Foundations of Computer Science (FOCS 2005): 637–646, 2005, ISBN 0-7695-2468-0, S2CID 13238254, doi:10.1109/SFCS.2005.14.
- Downey, Rod G.; Fellows, Michael R., Parameterized Complexity, Springer-Verlag, 1999, ISBN 0-387-94883-X.
- Dujmović, V.; Fellows, M.R.; Kitching, M.; Liotta, G.; McCartin, C.; Nishimura, N.; Ragde, P.; Rosamond, F.; Whitesides, S.; Wood, David R., On the parameterized complexity of layered graph drawing, Algorithmica, 2008, 52 (2): 267–292, S2CID 2298634, doi:10.1007/s00453-007-9151-1.
- Dujmović, Vida; Morin, Pat; Wood, David R., Path-width and three-dimensional straight-line grid drawings of graphs (PDF), Proc. 10th International Symposium on Graph Drawing (GD 2002), Lecture Notes in Computer Science 2528, Springer-Verlag: 42–53, 2003 [2024-01-31], (原始内容存档 (PDF)于2012-03-04).
- Ellis, J. A.; Sudborough, I. H.; Turner, J. S., Graph separation and search number, Proc. 1983 Allerton Conf. on Communication, Control, and Computing, 1983. As cited by Monien & Sudborough (1988).
- Ellis, J. A.; Sudborough, I. H.; Turner, J. S., The vertex separation and search number of a tree, Information and Computation, 1994, 113 (1): 50–79, doi:10.1006/inco.1994.1064 .
- Feige, Uriel; Hajiaghayi, Mohammadtaghi; Lee, James R., Improved approximation algorithms for minimum-weight vertex separators, Proc. 37th ACM Symposium on Theory of Computing (STOC 2005): 563–572, 2005, ISBN 1581139608, S2CID 14097859, doi:10.1145/1060590.1060674.
- Fellows, Michael R.; Langston, Michael A., On search decision and the efficiency of polynomial-time algorithms, Proc. 21st ACM Symposium on Theory of Computing: 501–512, 1989, ISBN 0897913078, S2CID 1854173, doi:10.1145/73007.73055 .
- Ferreira, Afonso G.; Song, Siang W., Achieving optimality for gate matrix layout and PLA folding: a graph theoretic approach, Proc. 1st Latin American Symposium on Theoretical Informatics (LATIN '92), Lecture Notes in Computer Science 583, Springer-Verlag: 139–153, 1992, ISBN 3-540-55284-7, doi:10.1007/BFb0023825, hdl:10068/43314 .
- de Fluiter, Babette, Algorithms for Graphs of Small Treewidth (PDF), Ph.D. thesis, Utrecht University, 1997 [2010-05-06], ISBN 90-393-1528-0, (原始内容 (PDF)存档于2011-07-24).
- Fomin, Fedor V., Pathwidth of planar and line graphs, Graphs and Combinatorics, 2003, 19 (1): 91–99, S2CID 43123449, doi:10.1007/s00373-002-0490-z.
- Fomin, Fedor V.; Høie, Kjartan, Pathwidth of cubic graphs and exact algorithms, Information Processing Letters, 2006, 97 (5): 191–196, doi:10.1016/j.ipl.2005.10.012.
- Fomin, Fedor V.; Kratsch, Dieter; Todinca, Ioan; Villanger, Yngve, Exact algorithms for treewidth and minimum fill-in, SIAM Journal on Computing, 2008, 38 (3): 1058–1079, doi:10.1137/050643350, hdl:1956/1151 .
- Fomin, Fedor V.; Thilikos, Dimitrios M., On self duality of pathwidth in polyhedral graph embeddings, Journal of Graph Theory, 2007, 55 (1): 42–54, doi:10.1002/jgt.20219.
- Garbe, Renate, Tree-width and path-width of comparability graphs of interval orders, Proc. 20th International Workshop Graph-Theoretic Concepts in Computer Science (WG'94), Lecture Notes in Computer Science 903, Springer-Verlag: 26–37, 1995, ISBN 978-3-540-59071-2, doi:10.1007/3-540-59071-4_35.
- Golovach, P. A., The cutwidth of a graph and the vertex separation number of the line graph, Discrete Mathematics and Applications, 1993, 3 (5): 517–522, S2CID 120745961, doi:10.1515/dma.1993.3.5.517.
- Guha, Sudipto, Nested graph dissection and approximation algorithms, Proc. 41st IEEE Symposium on Foundations of Computer Science (FOCS 2000): 126, 2000, ISBN 0-7695-0850-2, S2CID 9854056, doi:10.1109/SFCS.2000.892072.
- Gurski, Frank; Wanke, Egon, Line graphs of bounded clique-width, Discrete Mathematics, 2007, 307 (22): 2734–2754, doi:10.1016/j.disc.2007.01.020 .
- Gustedt, Jens, On the pathwidth of chordal graphs, Discrete Applied Mathematics, 1993, 45 (3): 233–248, doi:10.1016/0166-218X(93)90012-D .
- Habib, Michel; Möhring, Rolf H., Treewidth of cocomparability graphs and a new order-theoretic parameter, Order, 1994, 11 (1): 47–60, S2CID 2648030, doi:10.1007/BF01462229.
- Hliněny, Petr, Crossing-number critical graphs have bounded path-width, Journal of Combinatorial Theory, Series B, 2003, 88 (2): 347–367, doi:10.1016/S0095-8956(03)00037-6 .
- Kashiwabara, T.; Fujisawa, T., NP-completeness of the problem of finding a minimum-clique-number interval graph containing a given graph as a subgraph, Proc. International Symposium on Circuits and Systems: 657–660, 1979.
- Kinnersley, Nancy G., The vertex separation number of a graph equals its path-width, Information Processing Letters, 1992, 42 (6): 345–350, doi:10.1016/0020-0190(92)90234-M .
- Kinnersley, Nancy G.; Langston, Michael A., Obstruction set isolation for the gate matrix layout problem, Discrete Applied Mathematics, 1994, 54 (2–3): 169–213, doi:10.1016/0166-218X(94)90021-3 .
- Kirousis, Lefteris M.; Papadimitriou, Christos H., Interval graphs and searching (PDF), Discrete Mathematics, 1985, 55 (2): 181–184, doi:10.1016/0012-365X(85)90046-9 , (原始内容 (PDF)存档于2011-07-21).
- Kloks, Ton; Bodlaender, Hans L., Approximating treewidth and pathwidth of some classes of perfect graphs, Proc. 3rd International Symposium on Algorithms and Computation (ISAAC'92), Lecture Notes in Computer Science 650, Springer-Verlag: 116–125, 1992, ISBN 978-3-540-56279-5, doi:10.1007/3-540-56279-6_64, hdl:1874/16672 .
- Kloks, T.; Bodlaender, H.; Müller, H.; Kratsch, D., Computing treewidth and minimum fill-in: all you need are the minimal separators, Proc. 1st European Symposium on Algorithms (ESA'93) (Lecture Notes in Computer Science) 726, Springer-Verlag: 260–271, 1993, doi:10.1007/3-540-57273-2_61.
- Kloks, Ton; Kratsch, Dieter; Müller, H., Dominoes, Proc. 20th International Workshop Graph-Theoretic Concepts in Computer Science (WG'94), Lecture Notes in Computer Science 903, Springer-Verlag: 106–120, 1995, ISBN 978-3-540-59071-2, doi:10.1007/3-540-59071-4_41.
- Kneis, Joachim; Mölle, Daniel; Richter, Stefan; Rossmanith, Peter, Algorithms based on the treewidth of sparse graphs, Proc. 31st International Workshop on Graph-Theoretic Concepts in Computer Science (WG 2005), Lecture Notes in Computer Science 3787, Springer-Verlag: 385–396, 2005, ISBN 978-3-540-31000-6, doi:10.1007/11604686_34.
- Korach, Ephraim; Solel, Nir, Tree-width, path-width, and cutwidth, Discrete Applied Mathematics, 1993, 43 (1): 97–101, doi:10.1016/0166-218X(93)90171-J .
- Kornai, András; Tuza, Zsolt, Narrowness, path-width, and their application in natural language processing, Discrete Applied Mathematics, 1992, 36 (1): 87–92, doi:10.1016/0166-218X(92)90208-R .
- Lengauer, Thomas, Black-white pebbles and graph separation, Acta Informatica, 1981, 16 (4): 465–475, S2CID 19415148, doi:10.1007/BF00264496.
- Lopez, Alexander D.; Law, Hung-Fai S., A dense gate matrix layout method for MOS VLSI, IEEE Transactions on Electron Devices, 1980, 27 (8): 1671–1675, Bibcode:1980ITED...27.1671L, S2CID 64469353, doi:10.1109/T-ED.1980.20086, Also in the joint issue, IEEE Journal of Solid-State Circuits 15 (4): 736–740, 1980.
- Miller, George A., The Magical Number Seven, Plus or Minus Two, Psychological Review, 1956, 63 (2): 81–97 [2024-01-31], PMID 13310704, doi:10.1037/h0043158, hdl:11858/00-001M-0000-002C-4646-B , (原始内容存档于2008-05-30).
- Möhring, Rolf H., Graph problems related to gate matrix layout and PLA folding, Tinhofer, G.; Mayr, E.; Noltemeier, H.; et al (编), Computational Graph Theory, Computing Supplementum 7, Springer-Verlag: 17–51, 1990, ISBN 3-211-82177-5.
- Monien, B.; Sudborough, I. H., Min cut is NP-complete for edge weighted trees, Theoretical Computer Science, 1988, 58 (1–3): 209–229, doi:10.1016/0304-3975(88)90028-X .
- Ohtsuki, Tatsuo; Mori, Hajimu; Kuh, Ernest S.; Kashiwabara, Toshinobu; Fujisawa, Toshio, One-dimensional logic gate assignment and interval graphs, IEEE Transactions on Circuits and Systems, 1979, 26 (9): 675–684, doi:10.1109/TCS.1979.1084695.
- Peng, Sheng-Lung; Ho, Chin-Wen; Hsu, Tsan-sheng; Ko, Ming-Tat; Tang, Chuan Yi, A linear-time algorithm for constructing an optimal node-search strategy of a tree, Proc. 4th Int. Conf. Computing and Combinatorics (COCOON'98), Lecture Notes in Computer Science 1449, Springer-Verlag: 197–205, 1998[失效链接].
- Proskurowski, Andrzej; Telle, Jan Arne, Classes of graphs with restricted interval models (PDF), Discrete Mathematics and Theoretical Computer Science, 1999, 3: 167–176 [2024-01-31], (原始内容存档 (PDF)于2024-01-31).
- Robertson, Neil; Seymour, Paul, Graph minors. I. Excluding a forest, Journal of Combinatorial Theory, Series B, 1983, 35 (1): 39–61, doi:10.1016/0095-8956(83)90079-5 .
- Robertson, Neil; Seymour, Paul, Graph minors. XVI. Excluding a non-planar graph, Journal of Combinatorial Theory, Series B, 2003, 89 (1): 43–76, doi:10.1016/S0095-8956(03)00042-X .
- Robertson, Neil; Seymour, Paul D., Graph Minors. XX. Wagner's conjecture, Journal of Combinatorial Theory, Series B, 2004, 92 (2): 325–357, doi:10.1016/j.jctb.2004.08.001 .
- Scheffler, Petra, A linear algorithm for the pathwidth of trees, Bodendiek, R.; Henn, R. (编), Topics in Combinatorics and Graph Theory, Physica-Verlag: 613–620, 1990.
- Scheffler, Petra, Optimal embedding of a tree into an interval graph in linear time, Nešetřil, Jaroslav; Fiedler, Miroslav (编), Fourth Czechoslovakian Symposium on Combinatorics, Graphs and Complexity, Elsevier, 1992.
- Skodinis, Konstantin, Computing optimal linear layouts of trees in linear time, Proc. 8th European Symposium on Algorithms (ESA 2000), Lecture Notes in Computer Science 1879, Springer-Verlag: 403–414, 2000, ISBN 978-3-540-41004-1, doi:10.1007/3-540-45253-2_37.
- Skodinis, Konstantin, Construction of linear tree-layouts which are optimal with respect to vertex separation in linear time, Journal of Algorithms, 2003, 47 (1): 40–59, doi:10.1016/S0196-6774(02)00225-0.
- Suchan, Karol; Todinca, Ioan, Pathwidth of circular-arc graphs, Proc. 33rd International Workshop on Graph-Theoretic Concepts in Computer Science (WG 2007), Lecture Notes in Computer Science 4769, Springer-Verlag: 258–269, 2007, doi:10.1007/978-3-540-74839-7_25.
- Suderman, Matthew, Pathwidth and layered drawings of trees (PDF), International Journal of Computational Geometry and Applications, 2004, 14 (3): 203–225, doi:10.1142/S0218195904001433, (原始内容 (PDF)存档于2003-05-03).
- Takahashi, Atsushi; Ueno, Shuichi; Kajitani, Yoji, Minimal acyclic forbidden minors for the family of graphs with bounded path-width, Discrete Mathematics, 1994, 127 (1–3): 293–304, doi:10.1016/0012-365X(94)90092-2 .