Content deleted Content added
No edit summary |
m Moving Category:Algorithms in graph theory to Category:Graph algorithms per Wikipedia:Categories for discussion/Log/2024 October 4 |
||
(36 intermediate revisions by 7 users not shown) | |||
Line 1:
In graph theory, '''LASCNN''' is a
This algorithm can distinguish the critical nodes of the network with high precision, indeed, accuracy can reach 100% when identifying non-critical nodes.<ref>Zhang, Y.; Zhang, Z.; Zhang, B. A Novel Hybrid Optimization Scheme on Connectivity Restoration Processes for Large Scale Industrial Wireless Sensor and Actuator Networks. Processes 2019, 7, 939. </ref> The performance of LASCNN is scalable and quite competitive compared to other schemes.<ref>Kasali, F. A., Y. A. Adekunle, A. A. Izang, O. Ebiesuwa, and O. Otusile. "Evaluation of Formal Method Usage amongst Babcock University Students in Nigeria." Evaluation 5, no. 1 (2016).</ref>
==Pseudocode==
The LASCNN algorithm establishes a {{Var|k}}-hop neighbor list and a duplicate free pair wise connection list based on {{Var|k}}-hop information. If the neighbors stay connected then the node is non-critical.<ref>G. Sugithaetal., International Journal of Advanced Engineering Technology E-ISSN 0976-3945</ref><ref>Mohammed Alnuem, Nazir Ahmad Zafar, Muhammad Imran, Sana Ullah, and Mahmoud S. Fayed. "Formal specification and validation of a localized algorithm for segregation of critical/noncritical nodes in MAHSNs." International Journal of Distributed Sensor Networks 10, no. 6 (2014): 140973</ref>
<pre>
For ∀ A ∈ MAHSN
For ∀ ActiveConn ∈ ConnList
ActiveConn ∪ ConnNeighbors
End Function
</pre>
==Implementation==
[[File:Critical_Nodes_Application.png|thumb|300px|Critical Nodes Application - An implementation for the LASCNN algorithm using PWCT]]
The Critical Nodes application is a Free Open-Source implementation for the LASCNN algorithm. The application was developed in 2013 using [[PWCT|Programming Without Coding Technology]] software.<ref>Fayed, Al-Qurishi, Alamri, Aldariseh (2017) PWCT: visual language for IoT and cloud computing applications and systems, ACM</ref>
==See also==
* [[Connectivity (graph theory)]]
* [[Dynamic connectivity]]
* [[Strength of a graph]]
* [[Cheeger constant (graph theory)]]
* [[Critical point (network science)]]
* [[Depth-first search]]
* [[Breadth-first search]]
==References==
<references/>
==External links==
* [https://sourceforge.net/projects/criticalnodes/ Critical Nodes application]
[[Category:Networks]]
[[Category:Network theory]]
[[Category:Graph algorithms]]
|