Research Article

Local Community Detection in Complex Networks Based on Maximum Cliques Extension

Algorithm 3

LCD.
Input: ,
Output: Local Communities LCS
Begin:
(1)
(2) foreach unclassified MC in MCS
(4)  
(5)   foreach   in MC
(6)    
(7)    Initialize ;
(8)   endfor
(9)   while true
(10)    
(11)    foreach   in
(12)    delta CalculateDeltaValue ( );
(13)     , max delta;
(14)    if  
(15)      ;
(16)     Update ;
(17)    else
(18)     break;
(19)    endif
(20)   endfor
(21)   
(22) endfor
(23) retrun  LCS
End