The clustering degree algorithm (CDA) is designed to identify influential spreaders in weighted networks [2]. CDA combines the degree and strength of a node with the network topology and the differentiated contribution of its neighbors.
The CDA score of node \(i\), denoted \(c_{CDA}(i)\), is defined as
\[
c_{CDA}(i) = CD(i) + \sum_{j \in \mathcal{N}(i)} \frac{w_{ij}}{\max_{ij} w_{ij}} \, CD(j),
\]
where \(CD(i)\) is the clustering degree of node \(i\), given by
\[
CD(i) = \frac{α \sum_{j=1}^N a_{ij} + (1-α) \sum_{j=1}^N w_{ij}}{1 + \exp\Bigg[-\frac{\sum_{j,k} (w_{ij} + w_{ik}) a_{ij} a_{jk} a_{ki}}{2 (\sum_{j=1}^N w_{ij}) (\sum_{j=1}^N a_{ij} - 1)}\Bigg]},
\]
with \(α\) as a tunable parameter (set to 0.5).
For unweighted networks, \(CD\) is independent of \(α\), and the CDA score simplifies to
\[
c_{CDA}(i) = \frac{d_i}{1 + e^{-cl(i)}} + \sum_{j \in \mathcal{N}(i)} \frac{d_j}{1 + e^{-cl(j)}},
\]
where \(d_i\) and \(cl(i)\) denote the degree and clustering coefficient of node \(i\), respectively.

References

[1] Shvydun, S. (2025). Zoo of Centralities: Encyclopedia of Node Metrics in Complex Networks. arXiv: 2511.05122 https://doi.org/10.48550/arXiv.2511.05122
[2] Wang, Q., Ren, J., Wang, Y., Zhang, B., Cheng, Y., & Zhao, X. (2018). CDA: A clustering degree based influential spreader identification algorithm in weighted complex network. IEEE Access, 6, 19550-19559. doi: 10.1109/ACCESS.2018.2822844.