Research Article

Analysis on Influential Functions in the Weighted Software Network

Algorithm 1

Outdegree nodes.
Input: node set , edge set
Output: childStr //the out-degree node list of all nodes
(01) for (each )
(02) for ()
(03) if ( = )
(04) childStr += “” + ;
(05)
(06) print ( + childStr);
(07)