介数中心性

来自集智百科 - 复杂系统|人工智能|复杂科学|复杂网络|自组织
Zcy讨论 | 贡献2020年12月12日 (六) 01:52的版本
跳到导航 跳到搜索

此词条暂由水流心不竞初译,未经审校,带来阅读不便,请见谅。已由Zcy初次审校

文件:Graph betweenness.svg
An undirected graph colored based on the betweenness centrality of each vertex from least (red) to greatest (blue).

An undirected graph colored based on the betweenness centrality of each vertex from least (red) to greatest (blue).

根据每个顶点的介数中心性从最小(红色)到最大(蓝色)着色的无向图。

In graph theory, betweenness centrality is a measure of centrality in a graph based on shortest paths. For every pair of vertices in a connected graph, there exists at least one shortest path between the vertices such that either the number of edges that the path passes through (for unweighted graphs) or the sum of the weights of the edges (for weighted graphs) is minimized. The betweenness centrality for each vertex is the number of these shortest paths that pass through the vertex.

In graph theory, betweenness centrality is a measure of centrality in a graph based on shortest paths. For every pair of vertices in a connected graph, there exists at least one shortest path between the vertices such that either the number of edges that the path passes through (for unweighted graphs) or the sum of the weights of the edges (for weighted graphs) is minimized. The betweenness centrality for each vertex is the number of these shortest paths that pass through the vertex.

在图论中, 介数中心性Betweenness centrality是基于最短路径的图中心性的一种度量。对于连通图中的每一对节点,在节点之间至少存在一条最短路径,使得路径通过的边数(对于未加权图)或者边权重的和(对于加权图)最小。节点的中心性是经过该节点的最短路径的数量。


Betweenness centrality was devised as a general measure of centrality:模板:Sfnp it applies to a wide range of problems in network theory, including problems related to social networks, biology, transport and scientific cooperation. Although earlier authors have intuitively described centrality as based on betweenness, 模板:Harvp gave the first formal definition of betweenness centrality.

Betweenness centrality was devised as a general measure of centrality: it applies to a wide range of problems in network theory, including problems related to social networks, biology, transport and scientific cooperation. Although earlier authors have intuitively described centrality as based on betweenness, gave the first formal definition of betweenness centrality.

介数中心性Betweenness centrality的提出为中心性的衡量提供了一般的标准: 它适用于网络理论中广泛的问题,包括与社会网络、生物学、交通和科学合作有关的问题。尽管早期的学者直观地将中心性描述为基于介数,但是给出了 介数中心性Betweenness centrality的第一个正式定义。

 --小趣木木讨论 介数中心性Betweenness centrality'被设计为中心性的一般衡量标准:   这里不能照搬机器翻译 重新翻译


Betweenness centrality finds wide application in network theory; it represents the degree to which nodes stand between each other. For example, in a telecommunications network, a node with higher betweenness centrality would have more control over the network, because more information will pass through that node.

Betweenness centrality finds wide application in network theory; it represents the degree to which nodes stand between each other. For example, in a telecommunications network, a node with higher betweenness centrality would have more control over the network, because more information will pass through that node.

介数中心性Betweenness centrality在网络理论中有着广泛的应用,它代表了节点之间相互独立的程度。例如,在远程通信网络中,具有较高 介数中心性Betweenness centrality的节点将对网络有更多的控制,因为有更多的信息会通过该节点。

 --小趣木木讨论)应该统一名词表达  node节点/顶点  上文出现顶点,应该全文一致 

Definition定义

The betweenness centrality of a node [math]\displaystyle{ v }[/math] is given by the expression:

The betweenness centrality of a node [math]\displaystyle{ v }[/math] is given by the expression:

一个节点 < math > v </math > 的 介数中心性Betweenness centrality通过以下表达式给出:


[math]\displaystyle{ g(v)= \sum_{s \neq v \neq t}\frac{\sigma_{st}(v)}{\sigma_{st}} }[/math]



where [math]\displaystyle{ \sigma_{st} }[/math] is the total number of shortest paths from node [math]\displaystyle{ s }[/math] to node [math]\displaystyle{ t }[/math] and [math]\displaystyle{ \sigma_{st}(v) }[/math] is the number of those paths that pass through [math]\displaystyle{ v }[/math].

where [math]\displaystyle{ \sigma_{st} }[/math] is the total number of shortest paths from node [math]\displaystyle{ s }[/math] to node [math]\displaystyle{ t }[/math] and [math]\displaystyle{ \sigma_{st}(v) }[/math] is the number of those paths that pass through [math]\displaystyle{ v }[/math].

其中 < math > sigma { st } </math > 是从节点 < math > s </math > 到节点 < math > t </math >的最短路径总数, < math > sigma { st }(v) </math >是其中通过节点[math]\displaystyle{ v }[/math]的路径数量。


Note that the betweenness centrality of a node scales with the number of pairs of nodes as suggested by the summation indices. Therefore, the calculation may be rescaled by dividing through by the number of pairs of nodes not including [math]\displaystyle{ v }[/math], so that [math]\displaystyle{ g \in [0,1] }[/math]. The division is done by [math]\displaystyle{ (N-1)(N-2) }[/math] for directed graphs and [math]\displaystyle{ (N-1)(N-2)/2 }[/math] for undirected graphs, where [math]\displaystyle{ N }[/math] is the number of nodes in the giant component. Note that this scales for the highest possible value, where one node is crossed by every single shortest path. This is often not the case, and a normalization can be performed without a loss of precision

Note that the betweenness centrality of a node scales with the number of pairs of nodes as suggested by the summation indices. Therefore, the calculation may be rescaled by dividing through by the number of pairs of nodes not including [math]\displaystyle{ v }[/math], so that [math]\displaystyle{ g \in [0,1] }[/math]. The division is done by [math]\displaystyle{ (N-1)(N-2) }[/math] for directed graphs and [math]\displaystyle{ (N-1)(N-2)/2 }[/math] for undirected graphs, where [math]\displaystyle{ N }[/math] is the number of nodes in the giant component. Note that this scales for the highest possible value, where one node is crossed by every single shortest path. This is often not the case, and a normalization can be performed without a loss of precision

注意,如公式中求和指标所示,一个节点的 介数中心性Betweenness centrality与节点对的数量成比例缩放。因此,计算可以通过除以不包括 < math > v </math > 的节点对数来重新标定,使得[math]\displaystyle{ g \in [0,1] }[/math]。有向图是通过除以 < math > (N-1)(N-2) </math > 来实现的,而无向图是通过除以 < math > (N-1)(N-2)/2 </math >来实现的,其中 < math > n </math > 是巨组元中的节点数。请注意,当每一条最短路径都通过一个节点时,这个节点达到可以缩放的最大可能值。事实往往并非如此,可以在不损失精度的情况下执行标准化

 --小趣木木讨论)有向图的除法是通过 < math > (N-1)(N-2) </math > 来完成的,而 < math > (N-1)(N-2)/2 </math > 的除法是通过无向图来完成的,  两句可以采用相同的句式
[math]\displaystyle{ \mbox{normal}(g(v)) = \frac{g(v) - \min(g)}{\max(g) - \min(g)} }[/math]


which results in:

which results in:

结果是:

[math]\displaystyle{ \max(normal) = 1 }[/math]


[math]\displaystyle{ \min(normal) = 0 }[/math]


Note that this will always be a scaling from a smaller range into a larger range, so no precision is lost.

Note that this will always be a scaling from a smaller range into a larger range, so no precision is lost.

请注意,这种方法将始终是从较小范围到较大范围的缩放,因此不会丢失精度。


-->

-->



--->

--->


Weighted networks 加权网络

In a weighted network the links connecting the nodes are no longer treated as binary interactions, but are weighted in proportion to their capacity, influence, frequency, etc., which adds another dimension of heterogeneity within the network beyond the topological effects. A node's strength in a weighted network is given by the sum of the weights of its adjacent edges.

In a weighted network the links connecting the nodes are no longer treated as binary interactions, but are weighted in proportion to their capacity, influence, frequency, etc., which adds another dimension of heterogeneity within the network beyond the topological effects. A node's strength in a weighted network is given by the sum of the weights of its adjacent edges.

在加权网络中,连接节点的链路不再被视为二元的相互作用,而是根据其容量、影响力、频率等按比例加权,这在拓扑效应之外增加了网络内另一个异质性的维度。一个加权网络中的节点的强度是由其相邻边的权重之和来表示的。


[math]\displaystyle{ s_{i} = \sum_{j=1}^{N} a_{ij}w_{ij} }[/math]


With [math]\displaystyle{ a_{ij} }[/math] and [math]\displaystyle{ w_{ij} }[/math] being adjacency and weight matrices between nodes [math]\displaystyle{ i }[/math] and [math]\displaystyle{ j }[/math], respectively.

With [math]\displaystyle{ a_{ij} }[/math] and [math]\displaystyle{ w_{ij} }[/math] being adjacency and weight matrices between nodes [math]\displaystyle{ i }[/math] and [math]\displaystyle{ j }[/math], respectively.

用 < math > a { ij } </math > 和 < math > w { ij } </math > 分别作为 < math > i </math > 和 < math > < j </math > 节点之间的邻接矩阵和权值矩阵。

Analogous to the power law distribution of degree found in scale free networks, the strength of a given node follows a power law distribution as well.

Analogous to the power law distribution of degree found in scale free networks, the strength of a given node follows a power law distribution as well.

类似于 无标度网络Scale free networks中度的 幂律分布Power law distribution,节点的强度也服从 幂律分布Power law distribution


[math]\displaystyle{ s(k) \approx k^\beta }[/math]



A study of the average value [math]\displaystyle{ s(b) }[/math] of the strength for vertices with betweenness [math]\displaystyle{ b }[/math] shows that the functional behavior can be approximated by a scaling form [1]

A study of the average value [math]\displaystyle{ s(b) }[/math] of the strength for vertices with betweenness [math]\displaystyle{ b }[/math] shows that the functional behavior can be approximated by a scaling form

对具有介数[math]\displaystyle{ b }[/math]的节点强度的平均值[math]\displaystyle{ s(b) }[/math]的研究表明,功能行为可以用缩放形式来近似

[math]\displaystyle{ s(b)\approx b^{\alpha} }[/math]



Percolation centrality渗流中心性

Percolation centrality is a version of weighted betweenness centrality, but it considers the 'state' of the source and target nodes of each shortest path in calculating this weight. Percolation of a ‘contagion’ occurs in complex networks in a number of scenarios. For example, viral or bacterial infection can spread over social networks of people, known as contact networks. The spread of disease can also be considered at a higher level of abstraction, by contemplating a network of towns or population centres, connected by road, rail or air links. Computer viruses can spread over computer networks. Rumours or news about business offers and deals can also spread via social networks of people. In all of these scenarios, a ‘contagion’ spreads over the links of a complex network, altering the ‘states’ of the nodes as it spreads, either recoverably or otherwise. For example, in an epidemiological scenario, individuals go from ‘susceptible’ to ‘infected’ state as the infection spreads. The states the individual nodes can take in the above examples could be binary (such as received/not received a piece of news), discrete (susceptible/infected/recovered), or even continuous (such as the proportion of infected people in a town), as the contagion spreads. The common feature in all these scenarios is that the spread of contagion results in the change of node states in networks. Percolation centrality (PC) was proposed with this in mind, which specifically measures the importance of nodes in terms of aiding the percolation through the network. This measure was proposed by Piraveenan et al.[2]

Percolation centrality is a version of weighted betweenness centrality, but it considers the 'state' of the source and target nodes of each shortest path in calculating this weight. Percolation of a ‘contagion’ occurs in complex networks in a number of scenarios. For example, viral or bacterial infection can spread over social networks of people, known as contact networks. The spread of disease can also be considered at a higher level of abstraction, by contemplating a network of towns or population centres, connected by road, rail or air links. Computer viruses can spread over computer networks. Rumours or news about business offers and deals can also spread via social networks of people. In all of these scenarios, a ‘contagion’ spreads over the links of a complex network, altering the ‘states’ of the nodes as it spreads, either recoverably or otherwise. For example, in an epidemiological scenario, individuals go from ‘susceptible’ to ‘infected’ state as the infection spreads. The states the individual nodes can take in the above examples could be binary (such as received/not received a piece of news), discrete (susceptible/infected/recovered), or even continuous (such as the proportion of infected people in a town), as the contagion spreads. The common feature in all these scenarios is that the spread of contagion results in the change of node states in networks. Percolation centrality (PC) was proposed with this in mind, which specifically measures the importance of nodes in terms of aiding the percolation through the network. This measure was proposed by Piraveenan et al.

Percolation centrality渗流中心性是加权的 介数中心性Betweenness centrality的一种形式,但它在计算该权重时考虑了每条最短路径的源节点和目标节点的“状态”。在许多情况下,复杂网络中都会出现“传染”的渗流现象。例如,病毒或细菌感染可以通过人们的社交网络传播,也就是所谓的接触网络。还可以在更高的抽象层次上考虑疾病的传播问题,设想通过公路、铁路或空中连接起来的城镇或人口中心网络。计算机病毒可以通过计算机网络传播。关于商业活动和交易的谣言或新闻也可以通过人们的社交网络传播。在所有这些情况下,一种“传染病”在一个复杂网络的链接上传播,随着它的传播,无论是可恢复的还是不可恢复的,都会改变节点的“状态”。例如,在流行病学情况下,随着传染病的扩散,个体从“易感”状态转变为“感染”状态。在上面的例子中,随着传染病的传播,每个节点的状态可以是二元的(如接收/没有接收到一条信息)、离散的(易感/受感染/康复),甚至是连续的(如一个城镇中受感染的人群比例)。这些情景的共同特点是,传染病的传播导致网络中节点状态的改变。 Percolation centrality渗流中心性(PC)就是基于这个思想而提出的,它衡量了节点在帮助网络渗流方面的重要性。这个测度是由 Piraveenan 等人提出的。[2]

 --小趣木木讨论)在所有这些情况下,一种“传染病”在一个复杂网络的链接上传播,随着它的传播,无论是可恢复的还是不可恢复的,都会改变节点的“状态”。例如,在流行病学方案中,随着感染扩散,个人从”易感”状态转变为”受感染”状态。 在上面的例子中,每个节点可以采取的状态可以是二进制的(例如接收/没有接收到一条新闻)、离散的(易感/受感染/康复) ,甚至是连续的(例如一个城镇中受感染的人的比例) ,随着传染的扩散。这些情景的共同特点是,传染的扩散导致网络中节点状态的改变。 该段还可以再精简优化一下。


Percolation centrality is defined for a given node, at a given time, as the proportion of ‘percolated paths’ that go through that node. A ‘percolated path’ is a shortest path between a pair of nodes, where the source node is percolated (e.g., infected). The target node can be percolated or non-percolated, or in a partially percolated state.

Percolation centrality is defined for a given node, at a given time, as the proportion of ‘percolated paths’ that go through that node. A ‘percolated path’ is a shortest path between a pair of nodes, where the source node is percolated (e.g., infected). The target node can be percolated or non-percolated, or in a partially percolated state.

Percolation centrality渗流中心性定义了在给定时间内,通过一个给定节点的渗流路径的比例。“渗流路径”是一对节点之间的最短路径,其中源节点被渗流的(例如,被感染)。目标节点可以是渗流的或非渗流的,或处于部分渗流状态。


[math]\displaystyle{ PC^t(v)= \frac{1}{N-2}\sum_{s \neq v \neq r}\frac{\sigma_{sr}(v)}{\sigma_{sr}}\frac{{x^t}_s}{{\sum {[{x^t}_i}]}-{x^t}_v} }[/math]



where [math]\displaystyle{ \sigma_{sr} }[/math] is total number of shortest paths from node [math]\displaystyle{ s }[/math] to node [math]\displaystyle{ r }[/math] and [math]\displaystyle{ \sigma_{sr}(v) }[/math] is the number of those paths that pass through [math]\displaystyle{ v }[/math]. The percolation state of the node [math]\displaystyle{ i }[/math] at time [math]\displaystyle{ t }[/math] is denoted by [math]\displaystyle{ {x^t}_i }[/math] and two special cases are when [math]\displaystyle{ {x^t}_i=0 }[/math] which indicates a non-percolated state at time [math]\displaystyle{ t }[/math] whereas when [math]\displaystyle{ {x^t}_i=1 }[/math] which indicates a fully percolated state at time [math]\displaystyle{ t }[/math]. The values in between indicate partially percolated states ( e.g., in a network of townships, this would be the percentage of people infected in that town).

where [math]\displaystyle{ \sigma_{sr} }[/math] is total number of shortest paths from node [math]\displaystyle{ s }[/math] to node [math]\displaystyle{ r }[/math] and [math]\displaystyle{ \sigma_{sr}(v) }[/math] is the number of those paths that pass through [math]\displaystyle{ v }[/math]. The percolation state of the node [math]\displaystyle{ i }[/math] at time [math]\displaystyle{ t }[/math] is denoted by [math]\displaystyle{ {x^t}_i }[/math] and two special cases are when [math]\displaystyle{ {x^t}_i=0 }[/math] which indicates a non-percolated state at time [math]\displaystyle{ t }[/math] whereas when [math]\displaystyle{ {x^t}_i=1 }[/math] which indicates a fully percolated state at time [math]\displaystyle{ t }[/math]. The values in between indicate partially percolated states ( e.g., in a network of townships, this would be the percentage of people infected in that town).

其中, < math >\sigma_{sr}</math > 是从节点 < math > s </math > 到节点 < math > r </math > 的最短路径的数量总数, < math > \sigma_{sr}(v) </math > 是其中通过节点 < math > v </math > 的路径总数。在时间 < math > t </math > 时,节点的渗流状态用 < math > {x^t}_i </math > 表示,两个特殊情况是当 < math > {x^t}_i=0</math >, 表示在时间[math]\displaystyle{ t }[/math]时是非渗流状态,而当 [math]\displaystyle{ {x^t}_i=1 }[/math]时, 表示在时间[math]\displaystyle{ t }[/math]时是完全渗流状态。两者之间的值表示部分渗流状态(例如,在一个城镇网络中,这是该城镇感染者的百分比)。


The attached weights to the percolation paths depend on the percolation levels assigned to the source nodes, based on the premise that the higher the percolation level of a source node is, the more important are the paths that originate from that node. Nodes which lie on shortest paths originating from highly percolated nodes are therefore potentially more important to the percolation. The definition of PC may also be extended to include target node weights as well. Percolation centrality calculations run in [math]\displaystyle{ O(NM) }[/math] time with an efficient implementation adopted from Brandes' fast algorithm and if the calculation needs to consider target nodes weights, the worst case time is [math]\displaystyle{ O(N^3) }[/math].

The attached weights to the percolation paths depend on the percolation levels assigned to the source nodes, based on the premise that the higher the percolation level of a source node is, the more important are the paths that originate from that node. Nodes which lie on shortest paths originating from highly percolated nodes are therefore potentially more important to the percolation. The definition of PC may also be extended to include target node weights as well. Percolation centrality calculations run in [math]\displaystyle{ O(NM) }[/math] time with an efficient implementation adopted from Brandes' fast algorithm and if the calculation needs to consider target nodes weights, the worst case time is [math]\displaystyle{ O(N^3) }[/math].

渗流路径的权重取决于分配给源节点的渗流水平,前提是源节点的渗流水平越高,源节点的路径就越重要。因此,位于源自高渗流节点的最短路径上的节点可能对渗流更为重要。PC 的定义也可以扩展到包括目标节点的权值。当采用Brandes的快速算法计算 Percolation centrality渗滤中心性时,计算时间复杂度为 < math > O(NM) </math >,如果计算需要考虑目标节点的权值,最高的计算时间复杂度为 < math > O(N^3) </math > 。


Algorithms 算法

Calculating the betweenness and closeness centralities of all the vertices in a graph involves calculating the shortest paths between all pairs of vertices on a graph, which takes [math]\displaystyle{ \Theta(|V|^3) }[/math] time with the Floyd–Warshall algorithm, modified to not only find one but count all shortest paths between two nodes. On a sparse graph, Johnson's algorithm or Brandes' algorithm may be more efficient, both taking [math]\displaystyle{ O(|V|^2 \log |V| + |V| |E|) }[/math] time. On unweighted graphs, calculating betweenness centrality takes [math]\displaystyle{ O(|V| |E|) }[/math] time using Brandes' algorithm.模板:Sfnp

Calculating the betweenness and closeness centralities of all the vertices in a graph involves calculating the shortest paths between all pairs of vertices on a graph, which takes ^3)</math> time with the Floyd–Warshall algorithm, modified to not only find one but count all shortest paths between two nodes. On a sparse graph, Johnson's algorithm or Brandes' algorithm may be more efficient, both taking )</math> time. On unweighted graphs, calculating betweenness centrality takes )</math> time using Brandes' algorithm.

计算一个图中所有顶点的介数和 紧密中心性Closeness centralities涉及到计算图中所有节点对之间的最短路径,使用 Floyd-Warshall 算法时,这需要[math]\displaystyle{ \Theta(|V|^3) }[/math]的时间复杂度,改进后的算法不仅可以找到一条路径,还可以计算两个节点之间的所有最短路径。在稀疏图上,Johnson算法或Brandes算法可能更有效率,两者的时间复杂度为[math]\displaystyle{ O(|V|^2 \log |V| + |V| |E|) }[/math]。在未加权图上,使用 Brandes 算法计算 介数中心性Betweenness centrality需要的时间复杂度为[math]\displaystyle{ O(|V| |E|) }[/math]模板:Sfnp



In calculating betweenness and closeness centralities of all vertices in a graph, it is assumed that graphs are undirected and connected with the allowance of loops and multiple edges. When specifically dealing with network graphs, often graphs are without loops or multiple edges to maintain simple relationships (where edges represent connections between two people or vertices). In this case, using Brandes' algorithm will divide final centrality scores by 2 to account for each shortest path being counted twice.模板:Sfnp

In calculating betweenness and closeness centralities of all vertices in a graph, it is assumed that graphs are undirected and connected with the allowance of loops and multiple edges. When specifically dealing with network graphs, often graphs are without loops or multiple edges to maintain simple relationships (where edges represent connections between two people or vertices). In this case, using Brandes' algorithm will divide final centrality scores by 2 to account for each shortest path being counted twice.

在计算一个图的所有节点的介数和 紧密中心性Closeness centralities时,假定图是无向的,并且图在允许自环和多边时是连通的。当专门处理网络图时,图通常没有自环或多边来维持简单的关系(其中的边表示两个人或节点之间的联系)。在这种情况下,使用 Brandes 算法将最终的中心性除以2,因为每条最短路径被计算两次。


Another algorithm generalizes the Freeman's betweenness computed on geodesics and Newman's betweenness computed on all paths, by introducing a hyper-parameter controlling the trade-off between exploration and exploitation. The time complexity is the number of edges times the number of nodes in the graph.模板:Sfnp

Another algorithm generalizes the Freeman's betweenness computed on geodesics and Newman's betweenness computed on all paths, by introducing a hyper-parameter controlling the trade-off between exploration and exploitation. The time complexity is the number of edges times the number of nodes in the graph.

另一个算法通过引入一个超参数来控制勘探和开发之间的平衡,将计算测地线的弗里曼(Freeman)介数和所有路径上计算纽曼(Newman)介数的结果进行了推广。时间复杂度是图中的边数乘以节点数。模板:Sfnp


The concept of centrality was extended to a group level as well.[3] Group betweenness centrality shows the proportion of geodesics connecting pairs of non-group members that pass through a group of nodes. Brandes' algorithm for computing the betweenness centrality of all vertices was modified to compute the group betweenness centrality of one group of nodes with the same asymptotic running time.[3]

The concept of centrality was extended to a group level as well. Group betweenness centrality shows the proportion of geodesics connecting pairs of non-group members that pass through a group of nodes. Brandes' algorithm for computing the betweenness centrality of all vertices was modified to compute the group betweenness centrality of one group of nodes with the same asymptotic running time.

中心性的概念也扩展到了群体层次。[3]群体介数中心性反映了通过一组节点连接非组成员节点对的测地线所占的比例。修改了计算所有节点之间的介数中心性的Brandes算法,以计算具有相同渐近运行时间的一组节点之间的群体介数中心性。


Related concepts相关概念

Betweenness centrality is related to a network's connectivity, in so much as high betweenness vertices have the potential to disconnect graphs if removed (see cut set) .

Betweenness centrality is related to a network's connectivity, in so much as high betweenness vertices have the potential to disconnect graphs if removed (see cut set) .

介数中心性Betweenness centrality与网络的连通性有关,如果高介数顶点被移除,就有可能断开图的连接(参见割集)。


See also另请参阅

Notes 备注

  1. A. Barrat, M. Barthelemy, R. Pastor-Satorras, and A. Vespignani. The architecture of complex weighted networks. PNAS (2004) vol. 101 no. 11
  2. 2.0 2.1 Piraveenan, Mahendra (2013). "Percolation Centrality: Quantifying Graph-Theoretic Impact of Nodes during Percolation in Networks". PLOS ONE. 8 (1): e53095. Bibcode:2013PLoSO...853095P. doi:10.1371/journal.pone.0053095. PMC 3551907. PMID 23349699.
  3. 3.0 3.1 3.2 Puzis, R., Yagil, D., Elovici, Y., Braha, D. (2009)Collaborative attack on Internet users’ anonymity -{zh-cn:互联网档案馆; zh-tw:網際網路檔案館; zh-hk:互聯網檔案館;}-存檔,存档日期2013-12-07., Internet Research 19(1)


References 参考文献



  • Mantrach, Amin; et al. (2010). "The sum-over-paths covariance kernel: A novel covariance measure between nodes of a directed graph". IEEE Transactions on Pattern Analysis and Machine Intelligence. 32 (6): 1112–1126. doi:10.1109/tpami.2009.78. {{cite journal}}: Invalid |ref=harv (help)
  • Newman, M. E. J. (2010). Networks: An Introduction. Oxford, UK: Oxford University Press. ISBN 978-0199206650. 


  • Dolev, Shlomi; Elovici, Yuval; Puzis, Rami (2010). "Routing betweenness centrality". J. ACM. 57 (4): 25:1–25:27. doi:10.1145/1734213.1734219.



This page was moved from wikipedia:en:Betweenness centrality. Its edit history can be viewed at 介数中心性/edithistory